add _CBC to all encryption algorithms in CBC mode

This commit is contained in:
Andreas Steffen 2009-05-19 09:29:23 +02:00
parent 3bf5727acb
commit 4491d66692
2 changed files with 15 additions and 15 deletions

View File

@ -20,12 +20,12 @@
ENUM_BEGIN(encryption_algorithm_names, ENCR_DES_IV64, ENCR_DES_IV32,
"DES_IV64",
"DES",
"3DES",
"RC5",
"IDEA",
"CAST",
"BLOWFISH",
"DES_CBC",
"3DES_CBC",
"RC5_CBC",
"IDEA_CBC",
"CAST_CBC",
"BLOWFISH_CBC",
"3IDEA",
"DES_IV32");
ENUM_NEXT(encryption_algorithm_names, ENCR_NULL, ENCR_AES_CCM_ICV16, ENCR_DES_IV32,
@ -43,9 +43,9 @@ ENUM_NEXT(encryption_algorithm_names, ENCR_AES_GCM_ICV8, ENCR_NULL_AUTH_AES_GMAC
ENUM_NEXT(encryption_algorithm_names, ENCR_CAMELLIA_CBC, ENCR_CAMELLIA_CCM_ICV16, ENCR_NULL_AUTH_AES_GMAC,
"CAMELLIA_CBC",
"CAMELLIA_CTR",
"CAMELLIA_CCM_ICV8",
"CAMELLIA_CCM_ICV12",
"CAMELLIA_CCM_ICV16");
"CAMELLIA_CCM_8",
"CAMELLIA_CCM_12",
"CAMELLIA_CCM_16");
ENUM_NEXT(encryption_algorithm_names, ENCR_UNDEFINED, ENCR_TWOFISH_CBC, ENCR_CAMELLIA_CCM_ICV16,
"UNDEFINED",
"DES_ECB",

View File

@ -374,12 +374,12 @@ enum_names ah_transformid_names =
static const char *const esp_transform_name[] = {
"DES_IV64",
"DES",
"3DES",
"RC5",
"IDEA",
"CAST",
"BLOWFISH",
"DES_CBC",
"3DES_CBC",
"RC5_CBC",
"IDEA_CBC",
"CAST_CBC",
"BLOWFISH_CBC",
"3IDEA",
"DES_IV32",
"RC4",