这是Python脚本中的MD5摘要吗?

发布于 2024-08-27 22:15:59 字数 897 浏览 4 评论 0原文

我正在尝试理解前几天在 Stackoverflow 上给我的 Python 中的这个简单的 hashlib 代码:

import hashlib
m = hashlib.md5()
m.update("Nobody inspects")
m.update(" the spammish repetition here")
m.digest()
'\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9'
m.digest_size
16
m.block_size
64
print m

我认为 print m 会向我显示以下短语的 MD5 摘要:“没有人检查垃圾邮件”在这里重复”,但结果我在本地主机上得到了这一行:

<md5 HASH object @ 01806220>

奇怪的是,当我刷新页面时,我得到了另一行:

<md5 HASH object @ 018062E0>

并且每次刷新它时,我都会得到另一个值:

md5 哈希对象@017F8AE0

md5 哈希对象@01806220

md5 哈希对象@01806360

md5 哈希对象@01806400

md5 哈希对象@01806220

为什么会这样?我想,我在每一行中流动的“@”并不是真正的摘要。那么,它是什么?如何在此代码中显示 MD5 摘要?

我的python版本是Python 2.5,我当前使用的框架是webapp(我已经从“Google App Engine”与SDK一起下载了它)

I am trying to understand this simple hashlib code in Python that has been given to me the other day on Stackoverflow:

import hashlib
m = hashlib.md5()
m.update("Nobody inspects")
m.update(" the spammish repetition here")
m.digest()
'\xbbd\x9c\x83\xdd\x1e\xa5\xc9\xd9\xde\xc9\xa1\x8d\xf0\xff\xe9'
m.digest_size
16
m.block_size
64
print m

I thought that print m would show me the MD5 digest of the phrase: "Nobody inspects the spammish repetition here", but as a result I got this line on my local host:

<md5 HASH object @ 01806220>

Strange, when I refreshed the page, I got another line:

<md5 HASH object @ 018062E0>

and every time when I refresh it, I get another value:

md5 HASH object @ 017F8AE0

md5 HASH object @ 01806220

md5 HASH object @ 01806360

md5 HASH object @ 01806400

md5 HASH object @ 01806220

Why is it so? I guess, what I have in each line flowing "@" is not really a digest. Then, what is it? And how can I display MD5 digest here in this code?

My python version is Python 2.5 and the framework I am currently using is webapp (I have downloaded it together with SDK from "Google App Engine")

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

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

发布评论

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

评论(2

做个少女永远怀春 2024-09-03 22:15:59

hashlib.hash 对象没有实现自己的 __str__,因此使用默认的 to-string 操作,该操作打印类名,后跟其 id< /代码>(地址)。

(使用 .hexdigest() 获取十六进制 MD5 字符串。)

The hashlib.hash object doesn't implement its own __str__, so the default to-string operation is used, which prints the class name followed by its id (address).

(Use .hexdigest() to get the hex MD5 string.)

深居我梦 2024-09-03 22:15:59
print m.hexdigest()

更新:hexdigest() 给出了 digest() 的另一种表示形式。摘要中的每个字符都会转换为其十六进制表示形式。您可以使用以下函数对其进行转换:

def digest_to_hex(chars):  
  res = ''  
  for c in chars:  
    res = res + '%02x' % ord(c)  
  return res

您还可以使用生成器表达式

''.join('%02x' % ord(x) for x in m.digest())

m.digest().encode('hex')

顺便说一句:您可以使用 dir(some_object) 来获取其元素列表,并使用 help(some_object)< /code> (在交互式解释器中)以获取有关它的更多信息。

print m.hexdigest()

UPADATE: hexdigest() gives another representation of digest(). Every character in digest is transformed into its hex representation. You can transform it with the following function:

def digest_to_hex(chars):  
  res = ''  
  for c in chars:  
    res = res + '%02x' % ord(c)  
  return res

You can also use the generator expresion

''.join('%02x' % ord(x) for x in m.digest())

or

m.digest().encode('hex')

BTW: You can use dir(some_object) to get a list of its elements, and help(some_object) (in the interactive interpreter) to get more informations about it.

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