Python 哈希运算

发布于 2024-08-29 22:13:11 字数 148 浏览 5 评论 0原文

我有一个相当奇怪的问题。对于分布式哈希表,我需要能够对 MD5 哈希值执行一些简单的数学运算。其中包括总和(由哈希表示的数字总和)和模运算。现在我想知道实现这些操作的最佳方法是什么。 我正在使用 hashlib 来计算哈希值,但由于我得到的哈希值是字符串,我该如何使用它们进行计算?

I've got a rather strange problem. For a Distributed Hash Table I need to be able to do some simple math operations on MD5 hashes. These include a sum (numeric sum represented by the hash) and a modulo operation. Now I'm wondering what the best way to implement these operations is.
I'm using hashlib to calculate the hashes, but since the hashes I get are then string, how do I calculate with them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱,才寂寞 2024-09-05 22:13:11

您可以使用 hexdigest() 方法获取十六进制数字,然后将其转换为数字:

>>> h = hashlib.md5('data')
>>> int(h.hexdigest(), 16)
188041611063492600696317361555123480284L

如果您已有 digest() 的输出,则可以将其转换到十六进制数字:

>>> hexDig = ''.join('%02x' % ord(x) for x in h.digest())
>>> int(hexDig, 16)
188041611063492600696317361555123480284L

编辑

对于第二种情况,使用.encode('hex')binascii.hexlify实际上更容易转换:

>>> int(h.digest().encode('hex'), 16)
188041611063492600696317361555123480284L
>>> int(binascii.hexlify(h.digest()), 16)
188041611063492600696317361555123480284L

You can use the hexdigest() method to get hexadecimal digits, and then convert them to a number:

>>> h = hashlib.md5('data')
>>> int(h.hexdigest(), 16)
188041611063492600696317361555123480284L

If you already have the output of digest(), you can convert it to hexadecimal digits:

>>> hexDig = ''.join('%02x' % ord(x) for x in h.digest())
>>> int(hexDig, 16)
188041611063492600696317361555123480284L

Edit:

For the second case, it's actually easier to convert using .encode('hex') or binascii.hexlify:

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