python之hashlib模块

Posted

tags:

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

import hashlib
#md5加密工具,md5是不可逆的,所以只能比较密文,不能比较明文,python中不仅仅提供md5加密方法,还提供sha1,sha224,sha256,sha384,sha512,MD5加密算法
test_md5 = hashlib.md5()
test_md5.update(bytes(‘123‘,encoding=‘utf-8‘))
ret = test_md5.hexdigest()
print(ret)


#还可以提供一个key
test_md5 = hashlib.md5(bytes(‘abbbbb‘,encoding=‘utf-8‘))
test_md5.update(bytes(‘123‘,encoding=‘utf-8‘))
ret = test_md5.hexdigest()
print(ret)












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

Python常用模块之hashlib

python模块之hashlib模块

python之hashlib模块

Python之hashlib模块的使用

python之hashlib模块

Python之常用模块hashlib模块与collections模块