码迷,mamicode.com
首页 > 其他好文 > 详细

md5关于加密

时间:2019-11-03 10:31:17      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:python   print   port   hashlib模块   on()   object   date   update   class   

# 导入hashlib模块
import hashlib

# 获取MD5对象
# 不加盐操作
# md5 = hashlib.md5()

# 加盐操作
md5 = hashlib.md5(wenwe1i.encode("utf8"))
# 获取需要加密的字段
md5.update(how to use md5 in python hashlib?.encode("utf8"))
print(md5.hexdigest())
class Md5(object):
    def __init__(self, salt, content):
        self.salt = salt
        self.content = content

    def encryption(self):
        import hashlib
        md5 = hashlib.md5(self.salt.encode("utf8"))
        md5.update(self.content.encode("utf8"))
        ret = md5.hexdigest()
        return ret

ret = Md5(wenwe1i, how to use md5 in python hashlib?)
ret.encryption()

 

md5关于加密

标签:python   print   port   hashlib模块   on()   object   date   update   class   

原文地址:https://www.cnblogs.com/Rivend/p/11785192.html

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