标签:ash mac 模式 you date imp port 需要 字节
import hashlibm2=hashlib.md5()
m2.update("helloIt‘s me天王盖地虎".encode(encoding="UTF-8")) #encode成字节模式(bytes)
print(m2.hexdigest())
s2=hashlib.sha1()
s2.update(b"helloIt‘s me")
print(s2.hexdigest())
import hmac
h=hmac.new(b"12345","you are 250天王".encode(encoding="UTF-8"))
print(h.digest()) #不支持中文(需要encode)
print(h.hexdigest()) #不支持中文
标签:ash mac 模式 you date imp port 需要 字节
原文地址:http://blog.51cto.com/12992048/2285555