這篇文章將為大家詳細(xì)講解有關(guān)Python怎樣基于rsa模塊實(shí)現(xiàn)非對(duì)稱加密與解密,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
在河?xùn)|等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專(zhuān)注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都營(yíng)銷(xiāo)網(wǎng)站建設(shè),外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),河?xùn)|網(wǎng)站建設(shè)費(fèi)用合理。1、簡(jiǎn)單介紹:
RSA加密算法是一種非對(duì)稱加密算法 是由已知加密密鑰推導(dǎo)出解密密鑰在計(jì)算上是不可行的”密碼體制。加密密鑰(即公開(kāi)密鑰)PK是公開(kāi)信息,而解密密鑰(即秘密密鑰)SK是需要保密的。
RSA密鑰至少為500位長(zhǎng),一般推薦使用1024位。RSA密鑰長(zhǎng)度隨著保密級(jí)別提高,增加很快。
由于RSA的特性,一個(gè)1024位的密鑰只能加密117位字節(jié)數(shù)據(jù),當(dāng)數(shù)據(jù)量超過(guò)117位字節(jié)的時(shí)候,程序就會(huì)拋出異常。 ——來(lái)自大佬
2、代碼實(shí)現(xiàn):
來(lái)一段大佬的代碼:
import rsa # 一、生成公鑰及私鑰, 并保存 public_key, private_key = rsa.newkeys(1024) # 生成公鑰和私鑰 # 將生成的公鑰和私鑰進(jìn)行轉(zhuǎn)換,以便存儲(chǔ) pub = public_key.save_pkcs1() pri = private_key.save_pkcs1('PEM') # save_pkcsl()是內(nèi)置方法,其默認(rèn)參數(shù)是‘PEM' with open('pubkey.pem', mode='wb') as f, open('privkey.pem', mode='wb') as f1: f.write(pub) # 打開(kāi)兩個(gè)文件,分別存儲(chǔ)公鑰及私鑰 f1.write(pri) # 二. 使用公鑰加密, 私鑰解密 def func(): with open('pubkey.pem', mode='rb') as f, open('privkey.pem', 'rb') as f1: pub = f.read() # 從文件中再讀出公鑰和私鑰 pri = f1.read() public_key = rsa.PublicKey.load_pkcs1(pub) # 轉(zhuǎn)換為原始狀態(tài) private_key = rsa.PrivateKey.load_pkcs1(pri) message = "rsa加密測(cè)試" info = rsa.encrypt(message.encode('utf-8'), public_key) # 使用公鑰加密內(nèi)容,內(nèi)容必須是二進(jìn)制 msg = rsa.decrypt(info, private_key) # 使用私鑰解密,獲得解密后的內(nèi)容 print(msg.decode('utf-8')) # 使用之前記得先解碼
3、代碼升級(jí):
現(xiàn)在我將上述的代碼段封裝成一個(gè)Rsa class(包含的方法有:__init__——初始化方法,key_transform_store——存儲(chǔ)公鑰與私鑰的方法、encry——加密方法、decry——解密方法),使用的時(shí)候,直接將下面的代碼段拎到我們需要的地方去引用:先創(chuàng)建一Rsa對(duì)象,然后調(diào)用里面的方法即可:
import rsa class Rsa(object): """RSA加密、解密""" def __init__(self, number, pub_path='public_key.pem', priv_path='private_key.pem'): """ :param pub_path: the path to public key, default its path is public_key.pem :param priv_path: the path to private key, default its path is private_key.pem """ # Generate the public and private keys, and returns them self.public_key, self.private_key = rsa.newkeys(number) self.public_key_path = pub_path self.private_key_path = priv_path def key_transform_store(self): """ convert and save the generated public and private keys to a file :return: None """ # convert the generated public and private keys for storage pub = self.public_key.save_pkcs1() pri = self.private_key.save_pkcs1('PEM') # open two files to store the public key and private key respectively with open(self.public_key_path, mode='wb') as f: f.write(pub) with open(self.private_key_path, mode='wb') as f1: f1.write(pri) def encry(self, info): """ encrypt information :param info: the original string information to be encrypted :return:info_encrypted """ # read the public key from the file with open(self.public_key_path, mode='rb') as f: pub = f.read() # convert pub to original state public_key = rsa.PublicKey.load_pkcs1(pub) # use the public key to encrypt the content, which must be binary info_encrypted = rsa.encrypt(info.encode('utf-8'), public_key) return info_encrypted def decry(self, info_encrypted): """ decrypt information :param info_encrypted: encrypted information :return: info """ # read the private key from the file with open(self.private_key_path, 'rb') as f: pri = f.read() # convert pri to original state private_key = rsa.PrivateKey.load_pkcs1(pri) # decrypt with private key to obtain the decrypted content msg = rsa.decrypt(info_encrypted, private_key) info = msg.decode('utf-8') # decode return info rsa_obj = Rsa(1024) # 實(shí)例化 rsa_obj.key_transform_store() # info_encrypted = rsa_obj.encry('我是真心喜歡你的。') # 加密 print(info_encrypted) info = rsa_obj.decry(info_encrypted) # 解密 print(info) # 我是真心喜歡你的。
這里會(huì)出現(xiàn)一個(gè)問(wèn)題:由于RSA的特性,一個(gè)1024位的密鑰只能加密117位字節(jié)數(shù)據(jù),當(dāng)數(shù)據(jù)量超過(guò)117位字節(jié)的時(shí)候,程序就會(huì)拋出異常。如下測(cè)試會(huì)拋出:
OverflowError: 189 bytes needed for message, but there is only space for 117
rsa_obj = Rsa(1024) # 實(shí)例化 rsa_obj.key_transform_store() # info_encrypted = rsa_obj.encry('我是真心喜歡你的。我是真心喜歡你的。我是真心喜歡你的。我是真心喜歡你的。我是真心喜歡你的。我是真心喜歡你的。我是真心喜歡你的。') # 加密 print(info_encrypted) info = rsa_obj.decry(info_encrypted) # 解密 print(info)
后記: 通常使用中, 會(huì)先對(duì)數(shù)據(jù)進(jìn)行bas64加密, 再對(duì)加密后的內(nèi)容使用rsa加密, 最后對(duì)rsa解密后的內(nèi)容進(jìn)行bas64解密。
關(guān)于“Python怎樣基于rsa模塊實(shí)現(xiàn)非對(duì)稱加密與解密”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
名稱欄目:Python怎樣基于rsa模塊實(shí)現(xiàn)非對(duì)稱加密與解密-創(chuàng)新互聯(lián)
分享網(wǎng)址:http://jinyejixie.com/article16/dhdgdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站營(yíng)銷(xiāo)、App開(kāi)發(fā)、網(wǎng)頁(yè)設(shè)計(jì)公司、外貿(mào)建站、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容