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