hashilib模块和hmac模块

Posted allenzhang-920

tags:

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

用于加密相关的操作,3.x里代替了md5模块和sha模块,主要提供SHA1,SHA224,SHA256,SHA384,SHA512,MD5算法(SHA512最复杂,最安全)

 

>>> import hashlib
>>> m = hashlib.md5() # 其它加密算法同理
>>> m.update(666)
>>> m.hexdigest() # 16进制格式hash
fae0b27c451c728867a567e8c1bb4e53
>>> m.update(888)
>>> m.hexdigest()
75e266f182b4fa3625d4a4f4f779af54
>>> m_new = hashlib.md5()
>>> m_new.update(666888)
>>> m_new.hexdigest()
75e266f182b4fa3625d4a4f4f779af54

 

hmac模块内部对我们创建key和内容再进行处理然后再加密

>>> h = hmac.new(bWhere can I go a little later,bGo to the hospital)
>>> h.hexdigest()
8017d0aa2a051905ed8f821c3e2bdce5

 

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

Python自带的hmac模块

hash模块 hashlib 和hmac

第三十六篇 hashlib模块hmac模块和logging模块

nodeJS之crypto模块md5和Hmac加密

模块讲解---time模块,datetime模块,random模块,hashlib模块和hmac模块,typing模块,requests模块,re模块

SocketServer模块,hmac模块验证client合法性