在 Node.js 中,我使用以下代码
hash = crypto.createHmac('sha256', SECRET).update(fileContent).digest('hex');
计算 HMAC。C++/Qt 代码模拟
QByteArray hash = QMessageAuthenticationCode::hash(
fileContent, SECRET, QCryptographicHash::Sha256).toHex();
为文本 JSON 文件内容生成与 Node.JS 中相同的结果。但是 Linux 命令行 HMAC 计算会产生不同的哈希码:
> openssl sha256 -hmac "SECRET" filename
命令行有什么问题?什么是正确的openssl
论点?