C++ AES(Advanced Encryption Standard) implementation
This class is very simple to use:
...
unsigned char plain[] = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff }; //plaintext example
unsigned char key[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }; //key example
unsigned int plainLen = 16 * sizeof(unsigned char); //bytes in plaintext
AES aes(AESKeyLength::AES_128); ////128 - key length, can be 128, 192 or 256
c = aes.EncryptECB(plain, plainLen, key);
//now variable c contains plainLen bytes - ciphertext
...
Or for vectors:
...
vector<unsigned char> plain = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff }; //plaintext example
vector<unsigned char> key = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f }; //key example
AES aes(AESKeyLength::AES_128);
c = aes.EncryptECB(plain, key);
//now vector c contains ciphertext
...
ECB, CBC, CFB modes are supported.
This library does not provide any padding because padding is not part of AES standard. Plaintext and ciphertext length in bytes must be divisible by 16. If length doesn't satisfy this condition exception will be thrown
git clone https://github.com/SergeyBel/AES.git
docker-compose build
docker-compose up -d
- use make commands
There are four executables in bin
folder:
test
- run testsdebug
- version for debugging (main code will be taken from dev/main.cpp)profile
- version for profiling with gprof (main code will be taken from dev/main.cpp)speedtest
- performance speed test (main code will be taken from speedtest/main.cpp)release
- version with optimization (main code will be taken from dev/main.cpp)
Build commands:
make build_all
- build all targetsmake build_test
- buildtest
targetmake build_debug
- builddebug
targetmake build_profile
- buildprofile
targetmake build_speed_test
- buildspeedtest
targetmake build_release
- buildrelease
targetmake style_fix
- fix code stylemake test
- run testsmake debug
- run debug versionmake profile
- run profile versionmake speed_test
- run performance speed testmake release
- runrelease
versionmake clean
- cleanbin
directory