AES is a symmetric block cipher algorithm and it uses key to encrypt the message. It has three different key sizes like 128, 192, or 256 bit. In this project, AES 128-bit key was developed. It means that 128-bit or 16-byte messages can be encrypted and decrypted.
Some useful links are shown below.
CBC is a version of the AES. CBS uses the AES in itself and it can encrypt and decrypt all messages which have more byte than 16.
The schematic explanation link is shown below.
OFB is a version of the AES. OFB uses the AES in itself and it can encrypt and decrypt all messages which have more byte than 16.
The schematic explanation link is shown below.
AES.py is the main program of the project. CBC.py and OFB.py have to use AES.py to encrypt and decrypt the messages. The runnable files are AES_test.py, CBC_test.py and OFB_test.py to test the programs.
The version of the python interpreter is Python 3.7.5 and you can find it here.
Open your terminal and go to the same path with the files and typed these:
python AES_test.py
python CBC_test.py
python OFB_test.py