import hmac
s = b'good morning'
key = b'secret'
h = hmac.new(key, s, digestmod='MD5')
print(h.hexdigest())
对于同一条数据,key不同会得到不同的摘要值
原理:实现HMAC算法,使用一个key对数据进行‘杂凑’后再进行hash加密,
使用hmac比hash算法更安全,不同的key会产生不同的hash
import hmac
s = b'good morning'
key = b'secret'
h = hmac.new(key, s, digestmod='MD5')
print(h.hexdigest())
对于同一条数据,key不同会得到不同的摘要值
原理:实现HMAC算法,使用一个key对数据进行‘杂凑’后再进行hash加密,
使用hmac比hash算法更安全,不同的key会产生不同的hash
本文标题:hmac模块-加密算法
本文链接:https://www.haomeiwen.com/subject/hdaccktx.html
网友评论