Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef AES_H
00016 #define AES_H
00017
00018 #define AES_BLOCK_SIZE 16
00019
00020 void * aes_encrypt_init(const u8 *key, size_t len);
00021 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
00022 void aes_encrypt_deinit(void *ctx);
00023 void * aes_decrypt_init(const u8 *key, size_t len);
00024 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
00025 void aes_decrypt_deinit(void *ctx);
00026
00027 #endif