This is a simple AES encryptor and decryptor written in python. It is very basic and was written in an attempt to learn AES with python.
Feel free to use or modify. Hopefully it can help others learn AES with python!
Install python3, pip, venv
sudo apt install python3 python3-pip python3-venv
Create a python virtual environment
python3 -m venv venv
Activate the python virtual environment
source venv/bin/activate
Print the help information on how to use
python3 encrypt-decrypt.py -h