加密方式
Posted wapn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加密方式相关的知识,希望对你有一定的参考价值。
#!/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())
以上是关于加密方式的主要内容,如果未能解决你的问题,请参考以下文章