博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python加解密
阅读量:6150 次
发布时间:2019-06-21

本文共 813 字,大约阅读时间需要 2 分钟。

hot3.png

 

 

#!/usr/bin/env python# -*- coding: utf-8 -*-# Created by weilai on 2017/04/14from Cryptodome.Cipher import AESfrom Cryptodome.Random import get_random_bytesimport base64# declared outside of all functionskey = get_random_bytes(16)tag = Nonenonce = Nonedef encrypt(data):    global tag, nonce    byte_data = data.encode(encoding="utf-8")    cipher = AES.new(key, AES.MODE_EAX)    nonce = cipher.nonce    cipher_text, tag = cipher.encrypt_and_digest(byte_data)    return cipher_textdef decrypt(data):    global tag, nonce    cipher = AES.new(key, AES.MODE_EAX, nonce)    decrypt_text = cipher.decrypt_and_verify(data, tag)    return decrypt_textr = encrypt('超级大坏蛋')b64r = base64.b64encode(r)print(b64r)b64b = base64.b64decode(b64r)rr = decrypt(b64b)print(rr.decode())

 

转载于:https://my.oschina.net/raddleoj/blog/909135

你可能感兴趣的文章
命令查询每个文件文件数
查看>>
《跟阿铭学Linux》第8章 文档的压缩与打包:课后习题与答案
查看>>
RAC表决磁盘管理和维护
查看>>
Apache通过mod_php5支持PHP
查看>>
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
PHP执行批量mysql语句
查看>>
Extjs4.1.x 框架搭建 采用Application动态按需加载MVC各模块
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>
maclean liu的oracle学习经历--长篇连载
查看>>
ECSHOP调用指定分类的文章列表
查看>>
分享:动态库的链接和链接选项-L,-rpath-link,-rpath
查看>>
Javascript一些小细节
查看>>