作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个小的 python 程序,该程序本质上将使用 word 文件强制执行 md5 哈希。该程序获取您的哈希值,然后您可以选择一个文件用作单词列表。然后它将在文件中逐行检查并生成一个 md5 哈希版本以检查您输入的版本。如果它们匹配,那么它会告诉您产生该散列的单词。问题在于,当程序将行转换为散列时,它不会生成正确可识别的 md5 散列。例如,它说测试的 md5 哈希是 d8e8fca2dc0f896fd7cb4cb0031ba249。我尝试了多种编码文本的方式等等,但找不到正确的答案。我做错了什么?
import hashlib
mainhash = raw_input("What hash would you like to try and break?")
filename = raw_input("What file would you like to use?")
times = 0
if filename == "":
print "A list file is required."
exit()
f = open(filename)
for line in iter(f):
times = times + 1
word = line
line = hashlib.md5(line.encode("utf")).hexdigest()
print line
if line == mainhash:
print "Matching Hash found. Word is:"
print word
print times
exit()
f.close()
print "Sorry no match was found. Please try a different word file or make sure the hash is md5."
print times
最佳答案
line
在行尾包含换行符。替换:
line = hashlib.md5(line.encode("utf")).hexdigest()
与:
line = hashlib.md5(line.encode("utf").strip()).hexdigest()
即使是字符串末尾的单个换行符也会完全改变散列值。
关于Python hashlib 没有为 md5 生成正确的哈希值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31999669/
我想知道有没有免费的PL/pgSQL开发环境。 在 Notepad++ 中编写代码,替换函数并运行它会使过程变慢。我目前正在使用 pgAdmin(仅用于替换和运行程序),但这不是我想要的。 我知道这里
我是一名优秀的程序员,十分优秀!