2

I need a node.js equivalent of the following Ruby code:

    require 'openssl'
    digest = OpenSSL::Digest::Digest.new('sha1')
    signature = OpenSSL::HMAC.hexdigest(digest, 'auth secret', 'some string')

I tried the following in node.js, but the Ruby signature is different from node's

    var crypto, signature;
    crypto = require('crypto');
    signature = crypto.createHash("sha1").update('auth secret').update('some string').digest("hex");
1

1 Answer 1

1

You're on the right track. You need to use the crypto#createHmac method instead of createHash, and pass it your secret (key) when creating it. This will give you what you're looking for:

var crypto = require('crypto')
  , hmac
  , signature;

hmac = crypto.createHmac("sha1", 'auth secret');
hmac.update('some string');

signature = hmac.digest("hex");
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.