Python自带的hmac模块

Posted byerHu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python自带的hmac模块相关的知识,希望对你有一定的参考价值。

Python自带的hmac模块实现了标准的Hmac算法

我们首先需要准备待计算的原始消息message,随机key,哈希算法,这里采用MD5,使用hmac的代码如下:

import hmac
message = bHello world
key = bsecret
h = hmac.new(key,message,digestmod=MD5)
print(h.hexdigest())

可见使用hmac和普通hash算法非常类似。hmac输出的长度和原始哈希算法的长度一致。需要注意传入的key和message都是bytes类型,str类型需要首先编码为bytes

def hmac_md5(key, s):
    return hmac.new(key.encode(utf-8), s.encode(utf-8), MD5).hexdigest()

class User(object):
    def __init__(self, username, password):
        self.username = username
        self.key = ‘‘.join([chr(random.randint(48, 122)) for i in range(20)])
        self.password = hmac_md5(self.key, password)

 

以上是关于Python自带的hmac模块的主要内容,如果未能解决你的问题,请参考以下文章

Python之路——hmac模块

python-41-初识hmac与socketserver模块

如何在matlab中使用base64输出重现相同的python hmac

python模块hashlib & hmac

python hmac.new示例

Python中模块之hashlib&hmac的讲解