码迷,mamicode.com
首页 > 编程语言 > 详细

Python(hashlib模块)

时间:2018-08-31 12:35:07      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:hash   utf8   span   python   process   encode   obj   with   enc   

hashlib模块

 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()) #不可逆

加密。

执行结果:

<md5 HASH object @ 0x7f7df3887350>
5eb63bbbe01eeed093cb22bb8f5acdc3
71e9ccc2a9e17eea106f63ec7bacff5a
71e9ccc2a9e17eea106f63ec7bacff5a
b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9

Process finished with exit code 0

 

Python(hashlib模块)

标签:hash   utf8   span   python   process   encode   obj   with   enc   

原文地址:https://www.cnblogs.com/112358nizhipeng/p/9565137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!