Python加密hashlib模块

Posted

tags:

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

import hashlib
hash = hashlib.md5()
hash.update(‘admin‘.encode(‘utf8‘))
print(hash.hexdigest())
#21232f297a57a5a743894a0e4a801fc3

sha=hashlib.sha256()
sha.update(‘admin‘.encode(‘utf8‘))
print(sha.hexdigest())
#8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918










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

python - 常用模块 - hashlib模块

python的hashlib模块

python: hashlib 加密模块

Python:hashlib加密模块,flask模块写登录接口

hashlib加密模块_python

Python——hashlib(加密模块)