python3 sha 256 hex 加密
def sha256hex(data):
sha256 = hashlib.sha256()
sha256.update(data.encode())
res = sha256.hexdigest()
print("sha256加密结果:", res)
return res
def sha256hex(data):
sha256 = hashlib.sha256()
sha256.update(data.encode())
res = sha256.hexdigest()
print("sha256加密结果:", res)
return res
本文标题:python3 sha 256 hex 加密
本文链接:https://www.haomeiwen.com/subject/ttwrrctx.html
网友评论