Go to the source code of this file.
|
| void | AES_init_ctx (struct AES_ctx *ctx, const uint8_t *key) |
| |
| void | AES_init_ctx_iv (struct AES_ctx *ctx, const uint8_t *key, const uint8_t *iv) |
| |
| void | AES_ctx_set_iv (struct AES_ctx *ctx, const uint8_t *iv) |
| |
| void | AES_ECB_encrypt (const struct AES_ctx *ctx, uint8_t *buf) |
| |
| void | AES_ECB_decrypt (const struct AES_ctx *ctx, uint8_t *buf) |
| |
| void | AES_CBC_encrypt_buffer (struct AES_ctx *ctx, uint8_t *buf, uint32_t length) |
| |
| void | AES_CBC_decrypt_buffer (struct AES_ctx *ctx, uint8_t *buf, uint32_t length) |
| |
| void | AES_CTR_xcrypt_buffer (struct AES_ctx *ctx, uint8_t *buf, uint32_t length) |
| |
◆ AES_CBC_decrypt_buffer()
| void AES_CBC_decrypt_buffer |
( |
struct AES_ctx * |
ctx, |
|
|
uint8_t * |
buf, |
|
|
uint32_t |
length |
|
) |
| |
◆ AES_CBC_encrypt_buffer()
| void AES_CBC_encrypt_buffer |
( |
struct AES_ctx * |
ctx, |
|
|
uint8_t * |
buf, |
|
|
uint32_t |
length |
|
) |
| |
◆ AES_CTR_xcrypt_buffer()
| void AES_CTR_xcrypt_buffer |
( |
struct AES_ctx * |
ctx, |
|
|
uint8_t * |
buf, |
|
|
uint32_t |
length |
|
) |
| |
◆ AES_ctx_set_iv()
| void AES_ctx_set_iv |
( |
struct AES_ctx * |
ctx, |
|
|
const uint8_t * |
iv |
|
) |
| |
◆ 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()
| void AES_init_ctx |
( |
struct AES_ctx * |
ctx, |
|
|
const uint8_t * |
key |
|
) |
| |
◆ AES_init_ctx_iv()
| void AES_init_ctx_iv |
( |
struct AES_ctx * |
ctx, |
|
|
const uint8_t * |
key, |
|
|
const uint8_t * |
iv |
|
) |
| |