Encryption and decryption intergers using rsa algorithm in python

broken image
broken image

Many people say that RSA private key encryption has some security problems. Is there something wrong with my operation? I learned about this problem in search engine. Text = rsa.decrypt(base64.b64decode(base64Text.encode()), publicKey) # AttributeError: 'PublicKey' object has no attribute 'blinded_decrypt' Text = rsa.decrypt(base64.b64decode(base64Text.encode()), privateKey)Ĭipher = rsa.encrypt(b'Hello World!', privateKey) I try to use code to describe my purpose import rsaĬipher = rsa.encrypt(b'Hello World!', publicKey)īase64Text = base64.b64encode(cipher).decode()

broken image