首页 > 编程 > Python > 正文

Python使用MD5加密算法对字符串进行加密操作示例

2020-01-04 15:28:25
字体:
来源:转载
供稿:网友

本文实例讲述了Python使用MD5加密算法对字符串进行加密操作。分享给大家供大家参考,具体如下:

# encoding: utf-8from __future__ import divisionimport timeimport sysreload(sys)time1=time.time()sys.setdefaultencoding('utf-8')#######Md5实现方式1import hashlib# 创建md5对象hl = hashlib.md5()password="gxbdb684f1b8cfdf046744ea96d9fce48469fbac305dc6aa0d6operator_pro1520391961274j4102412y5210ying"hl.update(password)print (password)sign = hl.hexdigest()print sign##########MD5实现方式2import hashlibmd5=hashlib.md5(password.encode('utf-8')).hexdigest()print(md5)

输出结果:

gxbdb684f1b8cfdf046744ea96d9fce48469fbac305dc6aa0d6operator_pro1520391961274j4102412y5210ying
856b690e42eb4ce5af4c3e5be9a97bb5
856b690e42eb4ce5af4c3e5be9a97bb5
Process finished with exit code 0

 

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表