Python-World/python-mini-projects

encrypt/decrypt files

AlessandroFrasconi opened this issue · 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