1. 程式人生 > >加密模塊

加密模塊

return pda import iges turn spa weight ont enc

import  hashlib

m=hashlib.md5()

bytes類型才能加密
passwd=‘jd123‘
print(passwd.encode())#把字符串轉成bytes類型

print(m.__doc__)#查看方法

m.update(passwd.encode())#不能直接對字符串加密,要先把字符串轉成bytes類型
print(m.hexdigest())


MD5加密是不可逆

撞庫
befor after



# 加密方法函數

def my_md5(str):
import hashlib
new_str=str.encode()#把字符串轉成bytes類型
# new_str=b‘%s‘%str #把字符串轉成bytes類型
m=hashlib.md5() #實例化md5對象
m.update(new_str) #加密
return m.hexdigest() #獲取結果返回

# m=hashlib.sha256()
# m.update(passwd.encode())
# print(m.hexdigest())

# res=my_md5(‘jd‘)
# print(res)

























加密模塊