python3学习之md5加密

Posted

tags:

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

import hashlib
#
# #####md5#####双重加密,核对密码时也需要如此
hash = hashlib.md5(bytes(‘tttt‘, encoding=‘utf-8‘))  #tttt是第一层加密,在比较md5时也需要这么做
hash.update(bytes(‘test‘, encoding=‘utf-8‘))
result = hash.hexdigest()
print(result)


以上是关于python3学习之md5加密的主要内容,如果未能解决你的问题,请参考以下文章

python3学习之序列化

python3学习之正则

python3学习之对象

python3学习之内置函数

python3学习之异常

python3学习之random