Python hashlib模块实例使用详解
Python  /  管理员 发布于 8年前   226
这篇文章主要介绍了Python hashlib模块实例使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
hashlib模块主要的作用:
加密保护消息安全,常用的加密算法如MD5,SHA1等。
1、查看可用的算法有哪些
hashlib_algorithms.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlib# 始终可用的算法print('始终可用的算法 : {}'.format(sorted(hashlib.algorithms_guaranteed)))print('需要结合OpenSSL可用算法 : {}'.format(sorted(hashlib.algorithms_available)))运行效果
[root@ mnt]# python3 hashlib_algorithms.py 始终可用的算法 : ['blake2b', 'blake2s', 'md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha3_224', 'sha3_256', 'sha3_384', 'sha3_512', 'sha512', 'shake_128', 'shake_256']需要结合OpenSSL可用算法 : ['DSA', 'DSA-SHA', 'MD4', 'MD5', 'RIPEMD160', 'SHA', 'SHA1', 'SHA224', 'SHA256', 'SHA384', 'SHA512', 'blake2b', 'blake2s', 'dsaEncryption', 'dsaWithSHA', 'ecdsa-with-SHA1', 'md4', 'md5', 'ripemd160', 'sha', 'sha1', 'sha224', 'sha256', 'sha384', 'sha3_224', 'sha3_256', 'sha3_384', 'sha3_512', 'sha512', 'shake_128', 'shake_256', 'whirlpool']
2、md5加密算法(没有加盐)
hashlib_md5.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlibmd5_obj = hashlib.md5()md5_obj.update('123456'.encode('utf-8'))print(md5_obj.hexdigest())运行效果
[root@ mnt]# python3 hashlib_md5.py e10adc3949ba59abbe56e057f20f883e
3、md5加密算法(加盐)
hashlib_md5_salt.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlibsalt = '1234'md5_obj = hashlib.md5(salt.encode('utf-8'))md5_obj.update('123456'.encode('utf-8'))print(md5_obj.hexdigest())运行效果
[root@ mnt]# python3 hashlib_md5_salt.py b38e2bf274239ff5dd2b45ee9ae099c9
4、sha1加密算法
hashlib_sha1.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlibsha1_obj = hashlib.sha1()sha1_obj.update('123456'.encode('utf-8'))print(sha1_obj.hexdigest())hashlib_sha1.py运行效果
[root@ mnt]# python3 hashlib_sha1.py 7c4a8d09ca3762af61e59520943dc26494f8941b
5、按加密算法名字进行动态加密(即hashlib.new(‘算法名字'))
hashlib_new.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlibimport argparselorem = 'Hello World'parser = argparse.ArgumentParser('hashlib Demo')parser.add_argument( 'hash_name', choices=hashlib.algorithms_available, help='请输入hashlib的名字')parser.add_argument( 'data', nargs='?', default=lorem, help='请输入要加密的数据')args = parser.parse_args()h = hashlib.new(args.hash_name)h.update(args.data.encode('utf-8'))print(h.hexdigest())运行效果
[root@ mnt]# python3 hashlib_new.py md5 123456e10adc3949ba59abbe56e057f20f883e[root@ mnt]# python3 hashlib_new.py sha1 1234567c4a8d09ca3762af61e59520943dc26494f8941b[root@ mnt]# python3 hashlib_new.py sha256 1234568d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92[root@mnt]# python3 hashlib_new.py sha512 123456ba3253876aed6bc22d4a6ff53d8406c6ad864195ed144ab5c87621b6c233b548baeae6956df346ec8c17f5ea10f35ee3cbc514797ed7ddd3145464e2a0bab413
6、大文件切片md5加密算法
hashlib_update.py
#!/usr/bin/env python# -*- coding: utf-8 -*-import hashlibcontent = '''Lorem ipsum dolor sit amet, consectetur adipisicingelit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua. Ut enim ad minim veniam, quis nostrud exercitationullamco laboris nisi ut aliquip ex ea commodo consequat. Duisaute irure dolor in reprehenderit in voluptate velit esse cillumdolore eu fugiat nulla pariatur. Excepteur sint occaecatcupidatat non proident, sunt in culpa qui officia deseruntmollit anim id est laborum.'''#一次性加密:缺点文件大的话,加载到内存会导致内存溢出h = hashlib.md5()h.update(content.encode('utf-8'))all_at_once = h.hexdigest()#利用生成器,切片加密,对大文件加密有用def chunkize(size, text): start = 0 while start < len(text): chuck = text[start:start + size] yield chuck start += size return#一行一行加密h = hashlib.md5()for chunk in chunkize(64,content.encode(('utf-8'))): h.update(chunk)line_by_line = h.hexdigest()print('一性次加密结果 : ',all_at_once)print('一行一行加密结果 : ',line_by_line)运行效果
[root@ mnt]# python3 hashlib_update.py 一性次加密结果 : 3f2fd2c9e25d60fb0fa5d593b802b7a8一行一行加密结果 : 3f2fd2c9e25d60fb0fa5d593b802b7a8
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
