5#define uint8 unsigned char
9#define uint32 unsigned long int
20int aes_set_key(
aes_context *ctx, uint8 *key,
int nbits );
21void aes_encrypt(
aes_context *ctx, uint8 input[16], uint8 output[16] );
22void aes_decrypt(
aes_context *ctx, uint8 input[16], uint8 output[16] );