#include <stdint.h>
Go to the source code of this file.
◆ AES_BLOCKLEN
◆ AES_keyExpSize
#define AES_keyExpSize 176 |
◆ AES_KEYLEN
◆ AES_ECB_decrypt()
void AES_ECB_decrypt |
( |
const struct AES_ctx * |
ctx, |
|
|
uint8_t * |
buf |
|
) |
| |
◆ AES_ECB_encrypt()
void AES_ECB_encrypt |
( |
const struct AES_ctx * |
ctx, |
|
|
uint8_t * |
buf |
|
) |
| |
◆ AES_init_ctx_iv()
void AES_init_ctx_iv |
( |
struct AES_ctx * |
ctx, |
|
|
const uint8_t * |
key, |
|
|
const uint8_t * |
iv |
|
) |
| |
◆ XorWithByte()
void XorWithByte |
( |
uint8_t * |
buf, |
|
|
uint8_t |
byte, |
|
|
int |
length |
|
) |
| |
◆ XorWithIv()
void XorWithIv |
( |
uint8_t * |
buf, |
|
|
const uint8_t * |
Iv |
|
) |
| |