前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python的一些加密模块,hashlib,hmac,uuid

python的一些加密模块,hashlib,hmac,uuid

作者头像
SingYi
发布2022-07-14 16:24:43
3390
发布2022-07-14 16:24:43
举报
文章被收录于专栏:Lan小站Lan小站

md5加密:单向,算法加密后结果是一样的。

代码语言:javascript
复制
import hashlib

x = hashlib.md5()
x.update('www.lanol.cn'.encode('utf8'))
print(x.hexdigest())
image.png
image.png

ssa加密:这是一个系列,长度不同。

代码语言:javascript
复制
import hashlib

h1 = hashlib.sha1('www.lanol.cn'.encode())
print(h1.hexdigest())
h2 = hashlib.sha224('www.lanol.cn'.encode())
print(h2.hexdigest())
h3 = hashlib.sha256('www.lanol.cn'.encode())
print(h3.hexdigest())
h4 = hashlib.sha384('www.lanol.cn'.encode())
print(h4.hexdigest())
h5 = hashlib.sha512('www.lanol.cn'.encode())
print(h5.hexdigest())
image.png
image.png

一个字节占四位,如sha224

image.png
image.png

uuid1:用来生成一个全局唯一的模块

image.png
image.png

uuid3,uuid5:需要一个namespace,加密字符,生成的结果树固定的

image.png
image.png
image.png
image.png
image.png
image.png

uuid4:每次打印变化的,随机的

image.png
image.png
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档