HMAC算法的密钥

发布于 2024-11-29 23:02:22 字数 58 浏览 2 评论 0原文

如何生成 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 技术交流群。

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

发布评论

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

评论(1

淡写薰衣草的香 2024-12-06 23:02:22

HMAC 密钥必须在服务器和客户端之间预先共享(在交换消息之前双方都必须知道该密钥)。

您可以以任何您想要的方式生成密钥,例如通过从 /dev/random 读取一些字节:

$fd = fopen('/dev/random', 'r');
$bytes = fread($fd, '64);

然后您可以使用 hash_hmac

$hash = hash_hmac('sha1', $data, $key);

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:

$fd = fopen('/dev/random', 'r');
$bytes = fread($fd, '64);

Then you can calculate the HMAC using hash_hmac:

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