Created
July 17, 2018 17:17
-
-
Save h3nryza/a281a89d9f11129938dddf43a7ed8b80 to your computer and use it in GitHub Desktop.
RSA with pycryptodome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Crypto.PublicKey import RSA | |
key = RSA.generate(2048) | |
private_key = key.export_key() | |
file_out = open("private.pem", "wb") | |
file_out.write(private_key) | |
public_key = key.publickey().export_key() | |
file_out = open("receiver.pem", "wb") | |
file_out.write(public_key) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Crypto.PublicKey import RSA | |
from Crypto.Cipher import AES, PKCS1_OAEP | |
file_in = open("encrypted_data.bin", "rb") | |
private_key = RSA.import_key(open("private.pem").read()) | |
enc_session_key, nonce, tag, ciphertext = \ | |
[ file_in.read(x) for x in (private_key.size_in_bytes(), 16, 16, -1) ] | |
# Decrypt the session key with the private RSA key | |
cipher_rsa = PKCS1_OAEP.new(private_key) | |
session_key = cipher_rsa.decrypt(enc_session_key) | |
# Decrypt the data with the AES session key | |
cipher_aes = AES.new(session_key, AES.MODE_EAX, nonce) | |
data = cipher_aes.decrypt_and_verify(ciphertext, tag) | |
print(data.decode("utf-8")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Crypto.PublicKey import RSA | |
from Crypto.Random import get_random_bytes | |
from Crypto.Cipher import AES, PKCS1_OAEP | |
data = "I met aliens in UFO. Here is the map.".encode("utf-8") | |
file_out = open("encrypted_data.bin", "wb") | |
recipient_key = RSA.import_key(open("receiver.pem").read()) | |
session_key = get_random_bytes(16) | |
# Encrypt the session key with the public RSA key | |
cipher_rsa = PKCS1_OAEP.new(recipient_key) | |
enc_session_key = cipher_rsa.encrypt(session_key) | |
# Encrypt the data with the AES session key | |
cipher_aes = AES.new(session_key, AES.MODE_EAX) | |
ciphertext, tag = cipher_aes.encrypt_and_digest(data) | |
[ file_out.write(x) for x in (enc_session_key, cipher_aes.nonce, tag, ciphertext) ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment