Как использовать Node.JS Crypto для создания хэша HMAC-SHA1?
Я хочу создать хэш I love cupcakes
(подписано ключом abcdeg
)
Как я могу создать этот хэш, используя Node.JS Crypto?
3 ответов
документация для crypto: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')
несколько лет назад было сказано, что update()
и digest()
были устаревшими методами, и был введен новый подход streaming 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. Приведены дополнительные примеры использования потокового подхода.
решение Gwerder не будет работать, потому что hash = hmac.read();
происходит до того, как поток будет завершен. Таким образом, проблемы Ангракса. Также 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 строку