什么 PHP 函数生成 sha-1 128 位密钥?
使用sha1()函数,它生成40个字符的密钥,即160位。但我正在寻找一个生成 sha-1 128 密钥的函数?
Using sha1() function, it generates 40 character key which is 160 bit. But I am looking for a function that generates sha-1 128 key?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不存在 128 位 SHA-1 这样的东西。 顺便说一句, SHA-1 是 160 位
,SHA-1 有明显的弱点。
这可能会令人感兴趣:
来自此处(用户贡献的评论)。
There is no such thing as a 128bit SHA-1. SHA-1 is 160 bits
BTW, SHA-1 has significant weaknesses.
This may be of interest:
From here (user contributed comments).
以下哈希算法应呈现 128 位摘要:
这些算法呈现 32 个十六进制字符,每个字符 1 个半字节(4 位):
32 X 4 = 128 位
算法输出示例:
The following hash algorithms should render 128-bit digests:
Those render 32 hexadecimal characters, each 1 nibble (4 bits):
32 X 4 = 128-bits
Example algorithm outputs: