标签:客户 iges hash算法 imp bre bsp 不能 字符 算法
123456asd ==> hash字符串 123456asd ==> md5 ==> hash字符串 客户端 ====> hash字符串 ====> 服务端 hash字符串
import hashlib m = hashlib.md5() m.update(‘hello‘.encode(‘UTF-8‘)) m.update(‘world‘.encode(‘UTF-8‘)) res = m.hexdigest() # helloworld print(res) # fc5e038d38a57032085441e7fe7010b0 m1 = hashlib.md5() m1.update(‘he‘.encode(‘UTF-8‘)) m1.update(‘llo‘.encode(‘UTF-8‘)) m1.update(‘wor‘.encode(‘UTF-8‘)) m1.update(‘ld‘.encode(‘UTF-8‘)) res = m1.hexdigest() # helloworld print(res) # fc5e038d38a57032085441e7fe7010b0
m = hashlib.md5() # 加内容方式1 m.update(‘文件所有的内容‘) m.hexdigest() # 加内容方式2(推荐) m.update(‘hello‘.encode(‘UTF-8‘)) m.update(‘world‘.encode(‘UTF-8‘)) res = m.hexdigest() # helloworld print(res) m.update(‘文件所有的内容‘) m.hexdigest() f = open(‘a.txt‘, mode=‘rb‘) f.seek() f.read(2000)
import hashlib cryptograph=‘aee949757a2e698417463d47acac93df‘ passwds=[ ‘alex3714‘, ‘alex1313‘, ‘alex94139413‘, ‘alex123456‘, ‘123456alex‘, ‘a123lex‘, ] # 制作密码字典 dic = {} for p in passwds: res = hashlib.md5(p.encode(‘UTF-8‘)) dic[p] = res.hexdigest() # 模拟撞库得到密码 for k,v in dic.items(): if v == cryptograph: print(‘撞库成功!明文密码是:%s‘ %k) break
import hashlib passwds=[ ‘alex3714‘, ‘alex1313‘, ‘alex94139413‘, ‘alex123456‘, ‘123456alex‘, ‘a123lex‘, ] def make_passwd_dic(passwds): dic={} for passwd in passwds: m=hashlib.md5() m.update(passwd.encode(‘utf-8‘)) dic[passwd]=m.hexdigest() return dic def break_code(cryptograph,passwd_dic): for k,v in passwd_dic.items(): if v == cryptograph: print(‘密码是===>\033[46m%s\033[0m‘ %k) cryptograph=‘aee949757a2e698417463d47acac93df‘ break_code(cryptograph,make_passwd_dic(passwds))
标签:客户 iges hash算法 imp bre bsp 不能 字符 算法
原文地址:https://www.cnblogs.com/zhww/p/12984034.html