blob: 9ff842fc6b899cb3834623f8ebc1b6f351e15b10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Common values for AES algorithms
*/
#ifndef _CRYPTO_AES_H
#define _CRYPTO_AES_H
#define AES_MIN_KEY_SIZE 16
#define AES_MAX_KEY_SIZE 32
#define AES_KEYSIZE_128 16
#define AES_KEYSIZE_192 24
#define AES_KEYSIZE_256 32
#define AES_BLOCK_SIZE 16
#endif
|