wpa_supplicant / hostapd 2.0

aes.h

Go to the documentation of this file.
00001 
00010 #ifndef AES_H
00011 #define AES_H
00012 
00013 #define AES_BLOCK_SIZE 16
00014 
00015 void * aes_encrypt_init(const u8 *key, size_t len);
00016 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
00017 void aes_encrypt_deinit(void *ctx);
00018 void * aes_decrypt_init(const u8 *key, size_t len);
00019 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
00020 void aes_decrypt_deinit(void *ctx);
00021 
00022 #endif /* AES_H */
00023 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines