标签: node.js cryptography hmacsha1
我在PHP中有这个:
$res = base64_encode( hash_hmac ("sha1", $stringToSign, $this->secretKey, true) );
在Node.js中我试过:
var res = crypto.createHmac('sha1', secretKey).update(stringToSign).digest('base64');
不起作用。不要得到相同的结果 - 我做错了什么?