A simple Python tool to encrypt and decrypt files using AES-128 symmetric encryption via the Fernet scheme.
- π Auto-generate a secure
secret.key
(AES-128). - π Encrypt any file (text, images, etc.) to
.encrypted
. - π Decrypt
.encrypted
files back to their original form using the key.
- Install the
cryptography
library:pip install cryptography