python密码学对称和非对称密码教程
目录
- 对称密码术
- 缺点
- 数据加密标准(DES)
- 安装
- 输出
- 非对称加密
- 缺点
- 输出
对称密码术 在此类型中,加密和解密进程使用相同的密钥.它也被称为秘密密钥加密.对称加密的主要特征如下:
- 它更简单,更快.
- 双方以安全的方式交换密钥.
缺点
对称密码术的主要缺点是如果密钥泄漏给入侵者,则可以轻松更改消息,这被视为风险因素.
数据加密标准(DES) 最流行的对称密钥算法是数据加密标准(DES),Python包含一个包含DES算法背后的逻辑的包.
安装
在Python中安装DES包 pyDES 的命令是 :
pip install pyDES
文章图片
DES算法的简单程序实现如下<
import pyDesdata = "https://www.it610.com/article/DES Algorithm Implementation"k = pyDes.des("DESCRYPT", pyDes.CBC, "\0\0\0\0\0\0\0\0", pad=None, padmode=pyDes.PAD_PKCS5)d = k.encrypt(data)print "Encrypted: %r" % dprint "Decrypted: %r" % k.decrypt(d)assert k.decrypt(d) == data
它调用变量 padmode ,它根据DES算法实现提取所有包,并以指定的方式进行加密和解密.
输出
您可以看到以下输出作为上面和下面给出的代码的结果;
文章图片
非对称加密 它也被称为公钥加密.它以对称加密的相反方式工作.这意味着它需要两个密钥:一个用于加密,另一个用于解密.公钥用于加密,私钥用于解密.
缺点
- 由于其密钥长度,它的加密速度较低.
- 密钥管理至关重要.
from Crypto import Randomfrom Crypto.PublicKey import RSAimport base64def generate_keys():# key length must be a multiple of 256 and >= 1024modulus_length = 256*4privatekey = RSA.generate(modulus_length, Random.new().read)publickey = privatekey.publickey()return privatekey, publickeydef encrypt_message(a_message , publickey):encrypted_msg = publickey.encrypt(a_message, 32)[0]encoded_encrypted_msg = base64.b64encode(encrypted_msg)return encoded_encrypted_msgdef decrypt_message(encoded_encrypted_msg, privatekey):decoded_encrypted_msg = base64.b64decode(encoded_encrypted_msg)decoded_decrypted_msg = privatekey.decrypt(decoded_encrypted_msg)return decoded_decrypted_msga_message = "This is the illustration of RSA algorithm of asymmetric cryptography"privatekey , publickey = generate_keys()encrypted_msg = encrypt_message(a_message , publickey)decrypted_msg = decrypt_message(encrypted_msg, privatekey)print "%s - (%d)" % (privatekey.exportKey() , len(privatekey.exportKey()))print "%s - (%d)" % (publickey.exportKey() , len(publickey.exportKey()))print " Original content: %s - (%d)" % (a_message, len(a_message))print "Encrypted message: %s - (%d)" % (encrypted_msg, len(encrypted_msg))print "Decrypted message: %s - (%d)" % (decrypted_msg, len(decrypted_msg))
输出
你可以找到执行上面给出的代码时减去输出;
文章图片
【python密码学对称和非对称密码教程】以上就是python密码学对称和非对称密码教程的详细内容,更多关于python对称非对称密码学的资料请关注脚本之家其它相关文章!
推荐阅读
- Python利用Canny算法检测硬币边缘
- Python实现发送邮件(实现单发/群发邮件验证码)
- ansible+python+shell 实现SpringCloud微服务治理
- Python金融数据挖掘|Python金融数据挖掘
- python|OSChina 周六乱弹 ——揭秘后羿怎么死的
- python|推荐七个Python效率工具
- python|【Python自动化Excel】Python与pandas字符串操作
- Python零基础入门爬虫原理与数据抓取--HTTP的请求与响应
- python消除抑制警告的方法
- Python f-string字符串格式化的介绍