为什么 Python 创建的 MD5 哈希与在 shell 中使用 echo 和 md5sum 创建的 MD5 哈希不同?
Python MD5 哈希值与 shell 上的 md5sum 命令创建的哈希值不同。为什么?
>>> import hashlib
>>> h = hashlib.md5()
>>> h.update("mystringforhash")
>>> print h.hexdigest()
86b6423cb6d211734fc7d81bbc5e11d3 # Result from Python
$ echo mystringforhash | md5sum
686687dd68c5de717b34569dbfb8d3c3 - # Result on the shell
A Python MD5 hash is different than the one created by the md5sum command on the shell. Why?
>>> import hashlib
>>> h = hashlib.md5()
>>> h.update("mystringforhash")
>>> print h.hexdigest()
86b6423cb6d211734fc7d81bbc5e11d3 # Result from Python
$ echo mystringforhash | md5sum
686687dd68c5de717b34569dbfb8d3c3 - # Result on the shell
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
echo
附加一个\n
因为您通常不希望 shell 中不以换行符结尾的行(如果提示不是从最左边开始,它看起来真的很难看) .使用
-n
参数省略尾随换行符,它将打印与 python 脚本相同的校验和:echo
appends a\n
since you usually do not want lines not ending with a linebreak in your shell (it looks really ugly if the prompt does not start at the very left).Use the
-n
argument to omit the trailing linebreak and it will print the same checksum as your python script: