Python-World / python-mini-projects

A collection of simple python mini projects to enhance your python skills
https://python-world.github.io/python-mini-projects/#/
MIT License
14.83k stars 4.84k forks source link

encrypt/decrypt files #528

Open AlessandroFrasconi opened 2 years ago

AlessandroFrasconi commented 2 years ago

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