Python(hashlib模块)
2021-07-09 20:04
标签:hash utf8 span python process encode obj with enc hashlib模块 加密。 执行结果: Python(hashlib模块) 标签:hash utf8 span python process encode obj with enc 原文地址:https://www.cnblogs.com/112358nizhipeng/p/9565137.html 1 import hashlib
2
3 m = hashlib.md5()
4
5 print(m)
6
7 m.update(‘hello world‘.encode(‘utf8‘))
8 print(m.hexdigest())
9
10 m.update(‘nizhipeng‘.encode(‘utf8‘))
11 print(m.hexdigest())
12
13 #上下结果一致
14 m1 = hashlib.md5()
15 m1.update(‘hello worldnizhipeng‘.encode(‘utf8‘))
16 print(m1.hexdigest())
17
18
19 s = hashlib.sha256()
20 s.update(‘hello world‘.encode(‘utf8‘))
21 print(s.hexdigest()) #不可逆
上一篇:【C++】随机数引擎
文章标题:Python(hashlib模块)
文章链接:http://soscw.com/index.php/essay/102916.html