RFC 2104 HMAC-SHA1 的最佳实现
RFC 2104 HMAC-SHA1 alg 的最佳实现是什么?在 PHP 中? 我已阅读 https://www.php.net/manual/en /function.hash-hmac.php 但是当我尝试它们时我得到
不同的结果。
谢谢
What is the best implementation of RFC 2104 HMAC-SHA1 alg. in php?
I have read https://www.php.net/manual/en/function.hash-hmac.php but when I try them I get
different results.
Thank's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用您链接的功能即可。
hash_hmac("sha1", $message, $key);
$message 和 $key 是您提供的字符串。
Just use the function you linked.
hash_hmac("sha1", $message, $key);
$message and $key are the strings provided by you.
哈希扩展绝对是 PHP 中的最佳选择。正如您所指出的,
hash()
和具体的hash_hmac()
都支持 SHA1,并且都做得很好。The hash extension is definitely the best option you have in PHP.
hash()
and specificallyhash_hmac()
as you pointed out are both supporting SHA1 and both do a good job of it.