标签: node.js linux command-line sha256 cryptojs
在Node.js中,我使用以下代码
hash = crypto.createHmac('sha256', SECRET).update(file).digest('hex');
计算HMAC。但Linux命令行模拟产生不同的哈希码:
> openssl sha256 -hmac "SECRET" file
命令行有什么问题?什么是正确的论点?