From d1f6ccd15433de531cdd6074ea88b8ee9eb32bd4 Mon Sep 17 00:00:00 2001 From: David Shaw Date: Tue, 13 Aug 2002 18:44:25 +0000 Subject: * cipher.h: Add AES aliases for RIJNDAEL algo numbers. --- include/cipher.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'include/cipher.h') diff --git a/include/cipher.h b/include/cipher.h index 992532df6..5a8982244 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -33,9 +33,12 @@ #define CIPHER_ALGO_BLOWFISH 4 /* blowfish 128 bit key */ #define CIPHER_ALGO_SAFER_SK128 5 #define CIPHER_ALGO_DES_SK 6 -#define CIPHER_ALGO_RIJNDAEL 7 -#define CIPHER_ALGO_RIJNDAEL192 8 -#define CIPHER_ALGO_RIJNDAEL256 9 +#define CIPHER_ALGO_AES 7 +#define CIPHER_ALGO_AES192 8 +#define CIPHER_ALGO_AES256 9 +#define CIPHER_ALGO_RIJNDAEL CIPHER_ALGO_AES +#define CIPHER_ALGO_RIJNDAEL192 CIPHER_ALGO_AES192 +#define CIPHER_ALGO_RIJNDAEL256 CIPHER_ALGO_AES256 #define CIPHER_ALGO_TWOFISH 10 /* twofish 256 bit */ #define CIPHER_ALGO_SKIPJACK 101 /* experimental: skipjack */ #define CIPHER_ALGO_TWOFISH_OLD 102 /* experimental: twofish 128 bit */ -- cgit