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

加密方式

时间:2018-10-08 18:13:16      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:key   usr   mac   odi   NPU   pytho   md5加密   .sh   int   

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author: _wapn
import hashlib
import hmac

# md5加密
hash2 = hashlib.md5()
hash2.update(‘123456‘.encode(‘Utf-8‘))
print(hash2.hexdigest())

# sha系列加密
hash1 = hashlib.sha256()
hash1.update(‘123456‘.encode(‘utf-8‘))
print(hash1.hexdigest())

# hmac加密,hmac内部对创建的key和内容进行处理后再加密
h = hmac.new(‘加密‘.encode(‘utf-8‘))
h.update(input(‘>>>:‘).encode(‘utf-8‘))
print(h.hexdigest())

加密方式

标签:key   usr   mac   odi   NPU   pytho   md5加密   .sh   int   

原文地址:https://www.cnblogs.com/wapn/p/9755577.html

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