python hashlib模块

Posted qinyanli

tags:

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

hashlib作用:

将明文加密成密文,有两种加密方法md5,sha

实例演练:

1.md5方法

1 import hashlib
2 
3 hash = hashlib.md5()
4 hash.update("hello world".encode(utf-8))
5 print(hash.hexdigest())

打印结果:

5eb63bbbe01eeed093cb22bb8f5acdc3

备注:

python3默认编码格式是unicode,update方法只接受bytes,所以需要进行encode解码

2.sha方法

技术分享图片

sha有很多种方法,后面算法越来越复杂,运算效率越低。一般应用sha256

1 hash = hashlib.sha256()
2 hash.update("hello world".encode(utf-8))
3 print(hash.hexdigest())

打印结果:

b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9

 

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

python 模块之hashlib

Python hashlib模块

Python hashlib模块

python之hashlib模块

python,hashlib模块

25.Python序列化模块,hashlib模块, configparser模块,logging模块,异常处理