Python基于pycrypto实现的AES加密和解密算法示例


Posted in Python onApril 10, 2018

本文实例讲述了Python基于pycrypto实现的AES加密和解密算法。分享给大家供大家参考,具体如下:

一 代码

# -*- coding: UTF-8 -*-
import string
import random
from Crypto.Cipher import AES
def keyGenerater(length):
  '''''生成指定长度的秘钥'''
  if length not in (16, 24, 32):
    return None
  x = string.ascii_letters+string.digits
  return ''.join([random.choice(x) for i in range(length)])
def encryptor_decryptor(key, mode):
  return AES.new(key, mode, b'0000000000000000')
#使用指定密钥和模式对给定信息进行加密
def AESencrypt(key, mode, text):
  encryptor = encryptor_decryptor(key, mode)
  return encryptor.encrypt(text)
#使用指定密钥和模式对给定信息进行解密
def AESdecrypt(key, mode, text):
  decryptor = encryptor_decryptor(key, mode)
  return decryptor.decrypt(text)
if __name__ == '__main__':
  text = 'Python3.5 is excellent.'
  key = keyGenerater(16)
  #随机选择AES的模式
  mode = random.choice((AES.MODE_CBC, AES.MODE_CFB, AES.MODE_ECB, AES.MODE_OFB))
  if not key:
    print('Something is wrong.')
  else:
    print('key:', key)
    print('mode:', mode)
    print('Before encryption:', text)
    #明文必须以字节串形式,且长度为16的倍数
    text_encoded = text.encode()
    text_length = len(text_encoded)
    padding_length = 16 - text_length%16
    text_encoded = text_encoded + b'0'*padding_length
    text_encrypted = AESencrypt(key, mode, text_encoded)
    print('After encryption:', text_encrypted)
    text_decrypted =AESdecrypt(key, mode, text_encrypted)
    print('After decryption:', text_decrypted.decode()[:-padding_length])

二 运行结果

E:\python\python可以这样学\第18章 密码学编程\code>python AES_test.py
('key:', 'D5pcO6iu0HIbj3I2')
('mode:', 1)
('Before encryption:', 'Python3.5 is excellent.')
('After encryption:', '\xf4\x15\x9f\xaf\xea\xd0\n\x03\xfdf\xf6}9\xaa\xa34\xb4\x1eL2\x0e \x16\xa5 \xff?\x8bA\x8e\xdd\xa8')
('After decryption:', u'Python3.5 is excellent.')

Python 相关文章推荐
python中self原理实例分析
Apr 30 Python
Python数据类型详解(二)列表
May 08 Python
Python Sqlite3以字典形式返回查询结果的实现方法
Oct 03 Python
Python实现矩阵加法和乘法的方法分析
Dec 19 Python
Python多继承顺序实例分析
May 26 Python
使用Python实现画一个中国地图
Nov 23 Python
python机器学习库xgboost的使用
Jan 20 Python
使用python实现多维数据降维操作
Feb 24 Python
使用keras实现孪生网络中的权值共享教程
Jun 11 Python
python实现每天自动签到领积分的示例代码
Aug 18 Python
python中requests模拟登录的三种方式(携带cookie/session进行请求网站)
Nov 17 Python
paramiko使用tail实时获取服务器的日志输出详解
Dec 06 Python
浅谈Pandas中map, applymap and apply的区别
Apr 10 #Python
对pandas中apply函数的用法详解
Apr 10 #Python
Python 25行代码实现的RSA算法详解
Apr 10 #Python
使用pandas中的DataFrame数据绘制柱状图的方法
Apr 10 #Python
Python基于socket模块实现UDP通信功能示例
Apr 10 #Python
pandas把dataframe转成Series,改变列中值的类型方法
Apr 10 #Python
在pandas中一次性删除dataframe的多个列方法
Apr 10 #Python
You might like
15个小时----从修改程序到自己些程序
2006/10/09 PHP
利用discuz实现PHP大文件上传应用实例代码
2008/11/14 PHP
基于JavaScript实现继承机制之构造函数方法对象冒充的使用详解
2013/05/07 Javascript
使用nodejs、Python写的一个简易HTTP静态文件服务器
2014/07/18 NodeJs
浅谈Javascript Base64 加密解密
2014/12/28 Javascript
js实现仿qq消息的弹出窗效果
2016/01/06 Javascript
JavaScript动态数量的文件上传控件
2016/11/18 Javascript
WEB开发之注册页面验证码倒计时代码的实现
2016/12/15 Javascript
vue实现图片加载完成前的loading组件方法
2018/02/05 Javascript
微信小程序定位当前城市的方法
2018/07/19 Javascript
解决在vue项目中webpack打包后字体不生效的问题
2018/09/01 Javascript
详解ES6 Fetch API HTTP请求实用指南
2018/11/14 Javascript
vue实现设置载入动画和初始化页面动画效果
2019/10/28 Javascript
微信域名检测接口调用演示步骤(含PHP、Python)
2019/12/08 Javascript
H5实现手机拍照和选择上传功能
2019/12/18 Javascript
微信小程序学习总结(二)样式、属性、模板操作分析
2020/06/04 Javascript
基于element-ui封装表单金额输入框的方法示例
2021/01/06 Javascript
[06:07]刀塔密之二:攻之吾命受之吾幸
2014/07/03 DOTA
python基于右递归解决八皇后问题的方法
2015/05/25 Python
python使用turtle库与random库绘制雪花
2018/06/22 Python
python实现简单登陆系统
2018/10/18 Python
python 批量解压压缩文件的实例代码
2019/06/27 Python
python3 assert 断言的使用详解 (区别于python2)
2019/11/27 Python
基于python实现计算且附带进度条代码实例
2020/03/31 Python
无惧面试,带你搞懂python 装饰器
2020/08/17 Python
如何让IE9以下版本(ie6/7/8)认识html5元素
2013/04/01 HTML / CSS
夏尔巴人登珠峰品牌:Sherpa Adventure Gear
2018/02/08 全球购物
瑞典轮胎在线:Tirendo.se
2018/06/21 全球购物
Everything But Water官网:美国泳装品牌
2019/03/17 全球购物
Ruby如何创建一个线程
2013/03/10 面试题
机电系毕业生求职信
2014/07/11 职场文书
婚礼答谢词
2015/01/04 职场文书
2016公司年会通知范文
2015/04/25 职场文书
大学生社会服务心得体会
2016/01/22 职场文书
Python破解极验滑动验证码详细步骤
2021/05/21 Python
Vue3.0中Ref与Reactive的区别示例详析
2021/07/07 Vue.js