这是Python脚本中的MD5摘要吗?
我正在尝试理解前几天在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 itsid
(address).(Use
.hexdigest()
to get the hex MD5 string.)更新:
hexdigest()
给出了digest()
的另一种表示形式。摘要中的每个字符都会转换为其十六进制表示形式。您可以使用以下函数对其进行转换:您还可以使用生成器表达式
或
顺便说一句:您可以使用 dir(some_object) 来获取其元素列表,并使用 help(some_object)< /code> (在交互式解释器中)以获取有关它的更多信息。
UPADATE:
hexdigest()
gives another representation ofdigest()
. Every character in digest is transformed into its hex representation. You can transform it with the following function:You can also use the generator expresion
or
BTW: You can use
dir(some_object)
to get a list of its elements, andhelp(some_object)
(in the interactive interpreter) to get more informations about it.