#include <cstdio>
#include <cstring>
#include <iostream>
#include <stdexcept>
#include <string>
#include <vector>
Go to the source code of this file.
|
| class | AES |
| | This class implements the AES encryption and decryption algorithms as specified in the FIPS 197 standard. More...
|
| |
|
| const unsigned char | sbox [16][16] |
| |
| const unsigned char | inv_sbox [16][16] |
| |
◆ AESKeyLength
Enum class representing the possible key lengths for AES encryption.
This enum class defines the possible key lengths for AES encryption, which are AES_128, AES_192, and AES_256.
- Author
- Norman HUTTE
| Enumerator |
|---|
| AES_128 | |
| AES_192 | |
| AES_256 | |
◆ inv_sbox
| const unsigned char inv_sbox[16][16] |
◆ sbox
| const unsigned char sbox[16][16] |