Generate a hex encoded HMAC-SHA256 hash using Crypto in Nodejs

How to generate an encoded hash in nodejs using crypto


import { Service } from './service';
import crypto from 'crypto';

export class TestService extends Service {
    private _secretKey: string;

    constructor() {
        this._secretKey = '1234567890';
		this._userId = '123';
    }

    /**
     * Get Hex encoded hash of secret key
     */
    private GetHashKey(): string {
        return crypto
            .createHmac('sha256', this._secretKey)
            .update(this._getUserString(this._userId))
            .digest('hex');
    }
}

Interested in Cryptocurrency. Register and start investing here

Earn a side income by affiliate marketing. Learn here how to do it.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: