hashlib模块常用来做加密操作
hashlib
1、实现代码
import hashlib m = hashlib.md5() m.update('123456'.encode('utf8')) print(m.hexdigest())
2、也可以使用
m=hashlib.sha256()