Python之路——hmac模块

Posted liuyankui163

tags:

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

 1 import hmac
 2 import os
 3 c = os.urandom(24)  # 返回一个随机的32字节的二进制数,可以应用于密码相关的方面
 4 name = bliuyk
 5 h = hmac.new(name,c)
 6 digest = h.digest() # This returns a string containing 8-bit data.  The object is
 7                     # not altered in any way by this function; you can continue
 8                     # updating the object after calling this function.
 9 h.update(bhahaha)
10 print(digest)
11 print(h.digest())
12 print(h.hexdigest(),len(h.hexdigest()))

 

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

Python之hmac模块的使用

python-41-初识hmac与socketserver模块

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

python模块hashlib & hmac

python hmac.new示例

Python中模块之hashlib&hmac的讲解