|
void | AES_init_ctx (struct AES_ctx *ctx, const u8 *key) |
|
void | AES_init_ctx_iv (struct AES_ctx *ctx, const u8 *key, const u8 *iv) |
|
void | AES_ctx_set_iv (struct AES_ctx *ctx, const u8 *iv) |
|
void | AES_ctx_get_iv (struct AES_ctx *ctx, u8 *iv) |
|
void | AES_ECB_encrypt (struct AES_ctx *ctx, const u8 *buf) |
|
void | AES_ECB_decrypt (struct AES_ctx *ctx, const u8 *buf) |
|
void | AES_CBC_encrypt_buffer (struct AES_ctx *ctx, u8 *buf, u32 length) |
|
void | AES_CBC_decrypt_buffer (struct AES_ctx *ctx, u8 *buf, u32 length) |
|
void | AES_CTR_xcrypt_buffer (struct AES_ctx *ctx, u8 *buf, u32 length) |
|