#include "limits.h"Go to the source code of this file.
Defines | |
| #define | AES_128 |
| #define | AES_ENCRYPT |
| #define | AES_DECRYPT |
| #define | AES_ERR_CHK |
| #define | AES_BLOCK_SIZE 16 |
| #define | N_COLS 4 |
| #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. 00049 {
00050 }
|
1.4.2