RFC 2104 HMAC-SHA1 的最佳实现

发布于 2024-10-12 04:54:15 字数 230 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅唱ヾ落雨殇 2024-10-19 04:54:15

只需使用您链接的功能即可。

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.

雪若未夕 2024-10-19 04:54:15

哈希扩展绝对是 PHP 中的最佳选择。正如您所指出的,hash() 和具体的 hash_hmac() 都支持 SHA1,并且都做得很好。

The hash extension is definitely the best option you have in PHP. hash() and specifically hash_hmac() as you pointed out are both supporting SHA1 and both do a good job of it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文