我想将 160 位转换为整数
我正在使用 SHA1
所以我想将此 SHA1
的输出转换为整数
I am using SHA1
so i want to convert the output of this SHA1
to integer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用 SHA1
所以我想将此 SHA1
的输出转换为整数
I am using SHA1
so i want to convert the output of this SHA1
to integer
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
怎么样
How about
您可以用 5 个长整数表示 160 位。这可以是一个包含 5 个长整型的数组,也可以是一个包含 10 个短整型的数组。您是否想让它比一串字符/位更容易处理?
You could represent 160 bits in 5 long ints. That could be an array of 5 long ints, or you could have it be an array of 10 short ints. Are you trying to make it easier to handle than a string of characters/bits?
这会将 /tmp/a 的 sha1sum 转换为十进制整数:
This will convert the sha1sum of /tmp/a to a decimal integer: