Python-World / python-mini-projects

A collection of simple python mini projects to enhance your python skills

Home Page:https://python-world.github.io/python-mini-projects/#/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

encrypt/decrypt files

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