Go to the documentation of this file.
8 #include <linux/types.h>
11 #define AES_MIN_KEY_SIZE 16
12 #define AES_MAX_KEY_SIZE 32
13 #define AES_KEYSIZE_128 16
14 #define AES_KEYSIZE_192 24
15 #define AES_KEYSIZE_256 32
16 #define AES_BLOCK_SIZE 16
17 #define AES_MAX_KEYLENGTH (15 * 16)
18 #define AES_MAX_KEYLENGTH_U32 (AES_MAX_KEYLENGTH / sizeof(u32))