การเข้ารหัส RSA Cipher
ในบทนี้เราจะมุ่งเน้นไปที่การใช้งานการเข้ารหัสรหัส RSA ที่แตกต่างกันและฟังก์ชันที่เกี่ยวข้อง คุณสามารถอ้างอิงหรือรวมไฟล์ python นี้เพื่อนำไปใช้งานอัลกอริทึมการเข้ารหัส RSA
โมดูลที่รวมไว้สำหรับอัลกอริธึมการเข้ารหัสมีดังนี้ -
from Crypto.PublicKey import RSA
from Crypto.Cipher import PKCS1_OAEP
from Crypto.Signature import PKCS1_v1_5
from Crypto.Hash import SHA512, SHA384, SHA256, SHA, MD5
from Crypto import Random
from base64 import b64encode, b64decode
hash = "SHA-256"
เราได้เริ่มต้นค่าแฮชเป็น SHA-256 เพื่อความปลอดภัยที่ดีขึ้น เราจะใช้ฟังก์ชันเพื่อสร้างคีย์ใหม่หรือคีย์สาธารณะและคีย์ส่วนตัวโดยใช้รหัสต่อไปนี้
def newkeys(keysize):
random_generator = Random.new().read
key = RSA.generate(keysize, random_generator)
private, public = key, key.publickey()
return public, private
def importKey(externKey):
return RSA.importKey(externKey)
สำหรับการเข้ารหัสจะใช้ฟังก์ชันต่อไปนี้ซึ่งเป็นไปตามอัลกอริทึม RSA -
def encrypt(message, pub_key):
cipher = PKCS1_OAEP.new(pub_key)
return cipher.encrypt(message)
จำเป็นต้องมีพารามิเตอร์สองตัว: message และ pub_keyซึ่งหมายถึงคีย์สาธารณะ คีย์สาธารณะใช้สำหรับการเข้ารหัสและคีย์ส่วนตัวใช้สำหรับการถอดรหัส
โปรแกรมที่สมบูรณ์สำหรับขั้นตอนการเข้ารหัสมีดังต่อไปนี้ -
from Crypto.PublicKey import RSA
from Crypto.Cipher import PKCS1_OAEP
from Crypto.Signature import PKCS1_v1_5
from Crypto.Hash import SHA512, SHA384, SHA256, SHA, MD5
from Crypto import Random
from base64 import b64encode, b64decode
hash = "SHA-256"
def newkeys(keysize):
random_generator = Random.new().read
key = RSA.generate(keysize, random_generator)
private, public = key, key.publickey()
return public, private
def importKey(externKey):
return RSA.importKey(externKey)
def getpublickey(priv_key):
return priv_key.publickey()
def encrypt(message, pub_key):
cipher = PKCS1_OAEP.new(pub_key)
return cipher.encrypt(message)