web-dev-qa-db-ja.com

Node.js Cryptoを使用してHMAC-SHA1ハッシュを作成するにはどうすればよいですか?

I love cupcakesのハッシュを作成したい(キーabcdegで署名)

Node.js Cryptoを使用してそのハッシュを作成するにはどうすればよいですか?

182
user847495

暗号化のドキュメント: http://nodejs.org/api/crypto.html

var crypto = require('crypto')
  , text = 'I love cupcakes'
  , key = 'abcdeg'
  , hash

hash = crypto.createHmac('sha1', key).update(text).digest('hex')
328
Ricardo Tomasi

数年前、update()digest()はレガシーメソッドであると言われ、新しいストリーミングAPIアプローチが導入されました。現在、ドキュメントでは、どちらの方法も使用できると述べています。例えば:

var crypto    = require('crypto');
var text      = 'I love cupcakes';
var secret    = 'abcdeg'; //make this your secret!!
var algorithm = 'sha1';   //consider using sha256
var hash, hmac;

// Method 1 - Writing to a stream
hmac = crypto.createHmac(algorithm, secret);    
hmac.write(text); // write in to the stream
hmac.end();       // can't read from the stream until you call end()
hash = hmac.read().toString('hex');    // read out hmac digest
console.log("Method 1: ", hash);

// Method 2 - Using update and digest:
hmac = crypto.createHmac(algorithm, secret);
hmac.update(text);
hash = hmac.digest('hex');
console.log("Method 2: ", hash);

ノードv6.2.2およびv7.7.2でテスト済み

https://nodejs.org/api/crypto.html#crypto_class_hmac を参照してください。ストリーミングアプローチの使用例について説明します。

92
Adam Griffiths

ストリームのファイナライズが完了する前にhash = hmac.read();が発生するため、Gwerderのソリューションは機能しません。したがって、AngraXの問題。また、この例ではhmac.writeステートメントは不要です。

代わりにこれを行います:

var crypto    = require('crypto');
var hmac;
var algorithm = 'sha1';
var key       = 'abcdeg';
var text      = 'I love cupcakes';
var hash;

hmac = crypto.createHmac(algorithm, key);

// readout format:
hmac.setEncoding('hex');
//or also commonly: hmac.setEncoding('base64');

// callback is attached as listener to stream's finish event:
hmac.end(text, function () {
    hash = hmac.read();
    //...do something with the hash...
});

より正式には、必要に応じて、行

hmac.end(text, function () {

書ける

hmac.end(text, 'utf8', function () {

この例では、テキストはutf文字列であるため

21
Dave