admin管理员组文章数量:1350079
I'm trying to port the following php code to javascript on node.js:
$mac = hash_hmac('SHA256', 'string', 'secret', true);
$coded = base64_encode($mac);
I've tried the following:
var Crypto = require('crypto');
var code = Crypto.util.bytesToBase64(Crypto.HMAC(Crypto.SHA256, 'string', 'secret', { asBytes: true }));
I get the error:
TypeError: Object #Object has no method 'HMAC'
I'm new to node.js, what am I doing wrong?
Update:
var code = Crypto.createHmac('SHA256', secret_key).update(to_encode).digest('base64');
I'm trying to port the following php code to javascript on node.js:
$mac = hash_hmac('SHA256', 'string', 'secret', true);
$coded = base64_encode($mac);
I've tried the following:
var Crypto = require('crypto');
var code = Crypto.util.bytesToBase64(Crypto.HMAC(Crypto.SHA256, 'string', 'secret', { asBytes: true }));
I get the error:
TypeError: Object #Object has no method 'HMAC'
I'm new to node.js, what am I doing wrong?
Update:
Share Improve this question edited Feb 6, 2012 at 19:20 Alex asked Feb 6, 2012 at 18:57 AlexAlex 1,72219 silver badges16 bronze badges 0var code = Crypto.createHmac('SHA256', secret_key).update(to_encode).digest('base64');
2 Answers
Reset to default 10You want to use the createHmac
function instead.
Crypto.createHmac("SHA256", 'secret').update('string').digest('base64')
The method is called createHmac
> Crypto = require('crypto');
{ Credentials: [Function: Credentials],
createCredentials: [Function],
Hash: [Function],
createHash: [Function],
Hmac: [Function],
createHmac: [Function],
Cipher: [Function],
createCipher: [Function],
createCipheriv: [Function],
Decipher: [Function],
createDecipher: [Function],
createDecipheriv: [Function],
Sign: [Function],
createSign: [Function],
Verify: [Function],
createVerify: [Function],
DiffieHellman: [Function],
createDiffieHellman: [Function],
pbkdf2: [Function],
randomBytes: [Function],
pseudoRandomBytes: [Function],
rng: [Function],
prng: [Function] }
本文标签: phpEncryption in nodejsStack Overflow
版权声明:本文标题:php - Encryption in nodejs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743869892a2553272.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论