I try to encrypt data with python3.x using pycrypto library. It works fine for short data but not for long arrays. How can I encrypt long data? Should I write a wrapper to split data smaller chunks? Or is there any other crypto library that can handle long data?
from Crypto.PublicKey import RSA
from Crypto import Random
random_generator = Random.new().read
key = RSA.generate(1024, random_generator)
publickey = key.publickey()
"""
Shorter (128 bytes)
"""
msg = b'abcd'*32
print(msg) # b'abcdabcdabcd...
enc=publickey.encrypt(msg, 32)
print(enc) # Depends on key. Ex.: (b"hd\n\xbb\xe4\x8b...
dec=key.decrypt(enc)
print(dec) # b'abcdabcdabcdabcda...
if msg==dec: # TRUE
print('TRUE')
else:
print('FALSE')
"""
LONGER (132 bytes)
"""
msg = b'abcd'*33
print(msg) # b'abcdabcdabcd...
enc=publickey.encrypt(msg, 32)
print(enc) # Depends on key. Ex.: (b'\xa2J1;\xd4`\xc5i\x...
dec=key.decrypt(enc)
print(dec) # Depends on key. Ex.: b'|*\xb85\\B\\r2\xea\...
if msg==dec: # FALSE
print('TRUE')
else:
print('FALSE')
This is not the exact answer for the original question but this solved my problem: Based on https://security.stackexchange.com/a/10953
So it is not recommended to encrypt large data/files using RSA. Use AES instead: