#include "limits.h"
Include dependency graph for aes.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | aes_encrypt_ctx |
struct | aes_decrypt_ctx |
Defines | |
#define | AES_128 /* define if AES with 128 bit keys is needed */ |
#define | AES_ENCRYPT /* if support for encryption is needed */ |
#define | AES_DECRYPT /* if support for decryption is needed */ |
#define | AES_ERR_CHK /* for parameter checks & error return codes */ |
#define | AES_BLOCK_SIZE 16 /* the AES block size in bytes */ |
#define | N_COLS 4 /* the number of columns in the state */ |
#define | KS_LENGTH 64 |
#define | aes_ret int |
#define | aes_good 0 |
#define | aes_error -1 |
#define | aes_rval aes_ret |
Functions | |
void | gen_tabs (void) |
aes_rval | aes_encrypt_key128 (const void *in_key, aes_encrypt_ctx cx[1]) |
aes_rval | aes_encrypt (const void *in_blk, void *out_blk, const aes_encrypt_ctx cx[1]) |
aes_rval | aes_decrypt_key128 (const void *in_key, aes_decrypt_ctx cx[1]) |
aes_rval | aes_decrypt (const void *in_blk, void *out_blk, const aes_decrypt_ctx cx[1]) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 48 of file aestab.c.
|