hashlib模块主要提供摘要算法(用于加密的相关算法)
import hashlib
obj=hashlib.md5() #可以改为SHA256
"""hashlib.md5("sdasd".encode("utf8"))
在通用的md5加密中加入自己的字符串
类似于私钥密钥"""
obj.update("hello".encode("utf8"))
print(obj.hexdigest())
"""obj.update("hello".encode("utf8"))
obj.update("word".encode("utf8"))
这2步骤等同obj.update("helloword".encode("utf8"))"""