How to pass binary key to openssl
我很难将关键参数传递给
说
"first base64-decode the alphanumeric secret string (resulting in 64
bytes) before using it as the key for HMAC."
这会产生一个 64 字节的二进制字符串。但是 openssl 命令行程序只是简单地说
(也欢迎任何关于使用
您可以像这样指定十六进制格式的二进制密钥:
1 | $ openssl dgst -mac hmac -macopt hexkey:0102030405 myfile |