Sebastian Siewior | 89e12654 | 2007-10-17 23:18:57 +0800 | [diff] [blame] | 1 | /* |
2 | * Common values for AES algorithms | ||||
3 | */ | ||||
4 | |||||
5 | #ifndef _CRYPTO_AES_H | ||||
6 | #define _CRYPTO_AES_H | ||||
7 | |||||
8 | #define AES_MIN_KEY_SIZE 16 | ||||
9 | #define AES_MAX_KEY_SIZE 32 | ||||
10 | #define AES_KEYSIZE_128 16 | ||||
11 | #define AES_KEYSIZE_192 24 | ||||
12 | #define AES_KEYSIZE_256 32 | ||||
13 | #define AES_BLOCK_SIZE 16 | ||||
14 | |||||
15 | #endif |