标签:code utf-8 hashlib hex 自己 模块 enc bsp imp
用于加密相关的操作,3.x里代替了md5模块和sha模块
加密功能
import hashlib obj = hashlib.md5() # 如果在md5里加上自己设置的参数,别的解密软件就不容易解密了,例如:hashlib.md5(‘asdfg‘.encode(‘utff-8‘)) obj.update(‘hello‘.encode(‘utf-8‘)) print(obj.hexdigest())
运行结果(将hello转换成一个密文):
5d41402abc4b2a76b9719d911017c592
标签:code utf-8 hashlib hex 自己 模块 enc bsp imp
原文地址:https://www.cnblogs.com/liujinjing521/p/11421142.html