#include <stdint.h>
#include <stdlib.h>
Go to the source code of this file.
|
void | AES128_init (AES128_ctx *ctx, const uint8_t *key16) |
|
void | AES128_encrypt (const AES128_ctx *ctx, size_t blocks, uint8_t *cipher16, const uint8_t *plain16) |
|
void | AES128_decrypt (const AES128_ctx *ctx, size_t blocks, uint8_t *plain16, const uint8_t *cipher16) |
|
void | AES192_init (AES192_ctx *ctx, const uint8_t *key24) |
|
void | AES192_encrypt (const AES192_ctx *ctx, size_t blocks, uint8_t *cipher16, const uint8_t *plain16) |
|
void | AES192_decrypt (const AES192_ctx *ctx, size_t blocks, uint8_t *plain16, const uint8_t *cipher16) |
|
void | AES256_init (AES256_ctx *ctx, const uint8_t *key32) |
|
void | AES256_encrypt (const AES256_ctx *ctx, size_t blocks, uint8_t *cipher16, const uint8_t *plain16) |
|
void | AES256_decrypt (const AES256_ctx *ctx, size_t blocks, uint8_t *plain16, const uint8_t *cipher16) |
|
◆ AES128_decrypt()
◆ AES128_encrypt()
◆ AES128_init()
◆ AES192_decrypt()
◆ AES192_encrypt()
◆ AES192_init()
◆ AES256_decrypt()
◆ AES256_encrypt()
◆ AES256_init()