HMAC算法的密钥
如何生成 HMAC 算法的密钥,因为我必须使用它在其他客户端进行数据验证?
提前致谢。
How to generate the secret key for the HMAC algorithm as I have to use it for data verification at the other clients end?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HMAC 密钥必须在服务器和客户端之间预先共享(在交换消息之前双方都必须知道该密钥)。
您可以以任何您想要的方式生成密钥,例如通过从 /dev/random 读取一些字节:
然后您可以使用
hash_hmac
:The HMAC key must be pre-shared between the server and the client (both must known the key before you exchange messages).
You can generate the key in any way you want, for example by reading some bytes from /dev/random:
Then you can calculate the HMAC using
hash_hmac
: