Go to the source code of this file.
Defines | |
| #define | AES_ROR(x, n) (((x) << (32-(n))) | ((x) >> (n))) |
| #define | AES_XOR_ROR(p_table, p_tmp) |
| #define | AES_KEY_COUNT 10 |
Variables | |
| static uint32_t const | p_aes_table [10] |
| static uint32_t const | p_aes_encrypt [256] |
| static uint32_t const | p_aes_itable [256] |
| static uint32_t const | p_aes_decrypt [256] |
| static uint16_t const | p_shuffle_xor [256] |
| static uint16_t const | p_shuffle_sub [256] |
| static uint16_t const | p_shuffle_add [256] |
| #define AES_KEY_COUNT 10 |
| #define AES_ROR | ( | x, | |||
| n | ) | (((x) << (32-(n))) | ((x) >> (n))) |
| #define AES_XOR_ROR | ( | p_table, | |||
| p_tmp | ) |
uint32_t const p_aes_decrypt[256] [static] |
uint32_t const p_aes_encrypt[256] [static] |
uint32_t const p_aes_itable[256] [static] |
uint32_t const p_aes_table[10] [static] |
Initial value:
{
0x00000001, 0x00000002, 0x00000004, 0x00000008, 0x00000010, 0x00000020,
0x00000040, 0x00000080, 0x0000001b, 0x00000036
}
uint16_t const p_shuffle_add[256] [static] |
uint16_t const p_shuffle_sub[256] [static] |
uint16_t const p_shuffle_xor[256] [static] |
1.5.1