python-mini-projects icon indicating copy to clipboard operation
python-mini-projects copied to clipboard

encrypt/decrypt files

Open AlessandroFrasconi opened this issue 4 years ago • 0 comments

In the "encrypt and decrypt files" project in the line 3 and 4 there are an error:

from Cryptodome.Cipher import AES from Cryptodome import Random

must be

from Crypto.Cipher import AES from Crypto import Random

AlessandroFrasconi avatar Nov 14 '21 10:11 AlessandroFrasconi