[菜鸟实录]Python进行RSA加密
一. 安装RSA模块
参考http://changfengmingzhi.blog.163.com/blog/static/167105288201331594158559/
1. 下载ez_setup.py(http://peak.telecommunity.com/dist/ez_setup.py)
2. 用python解释执行它 (如使用IDLE打开该py文件,按F5解释执行)
3. 安装完成后,会在scripts文件夹下生成几个exe可执行文件。(如: D:\Python27\Scripts目录下)
4.可以把之前下载的文件rsa-3.1.1-py2.7.egg拷贝到D:\Python27\Scripts目录下, 然后在cmd中切换到D:\Python27\Scripts目录下,执行egg文件:easy_install.exe rsa-3.1.1-py2.7.egg
二. 用Python进行RSA加密实例
实例源码如下:
import os
import sys
import math
def GetDataFromFile(filename):
f = open(filename)
n = int(f.read(),16)
print('*'*77)
print(filename)
print(hex(n))
print('*'*77)
return (n)
def my_RSA_encrypt(class="lazy" data-src, d, n):
x = pow(class="lazy" data-src, d, n)
print('*'*77)
print("Encrypted Data is:")
print(hex(x))
print('*'*77)
return x
def my_RSA_decrypt(class="lazy" data-src, e, n):
y = pow(class="lazy" data-src, e, n)
print('*'*77)
print("Decrypted Data is:")
print(hex(y))
print('*'*77)
return y
path = os.getcwd()
#====================================
fname = path + "\\Firm_N.txt"
plaintData = GetDataFromFile(fname)
fname = path + "\\Manuf_private_d.txt"
d = GetDataFromFile(fname)
fname = path + "\\Manuf_N.txt"
n = GetDataFromFile(fname)
encryptedData = my_RSA_encrypt(plaintData, d, n)
#====================================
fname = path + "\\Firm_public_e.txt"
plaintData = GetDataFromFile(fname)
fname = path + "\\Manuf_private_d.txt"
d = GetDataFromFile(fname)
fname = path + "\\Manuf_N.txt"
n = GetDataFromFile(fname)
encryptedData = my_RSA_encrypt(plaintData, d, n)
#====================================
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341