常用模块-------hashlib (加密模块)

Posted zbooo

tags:

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

import hashlib

# m=hashlib.md5()
# m.update("hallo world".encode("utf8"))
# print(m.hexdigest())# 5fd591a948dc76dd731f8998e19c773a 把"hallo world"转化成了16进制编码
#
#
# m.update("zhoubo".encode("utf8"))
# print(m.hexdigest())#5fd591a948dc76dd731f8998e19c773a
# #d3a7a17fab36ebc37763808b3d05797f

# m1=hashlib.md5()
# m1.update("hallo worldzhoubo".encode("utf8"))
# print(m1.hexdigest())#d3a7a17fab36ebc37763808b3d05797f

s=hashlib.sha256()#另一种转密算法
s.update("hallo worldzhoubo".encode("utf8"))
print(s.hexdigest())#0f0b1e45776176c210d3488caaa16b8cb9c6aab781f37d72ae685a2b5141624c

















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

常用模块-------hashlib (加密模块)

Python全栈之路----常用模块----hashlib加密模块

Python常用模块之hashlib

常用模块-02

Python常用模块——hashlib加密

加密模块hashlib