add _CBC to all encryption algorithms in CBC mode

This commit is contained in:
Andreas Steffen
2009-05-19 10:02:24 +02:00
parent 3bf5727acb
commit 4491d66692
2 changed files with 15 additions and 15 deletions
+9 -9
View File
@@ -20,12 +20,12 @@
ENUM_BEGIN(encryption_algorithm_names, ENCR_DES_IV64, ENCR_DES_IV32, ENUM_BEGIN(encryption_algorithm_names, ENCR_DES_IV64, ENCR_DES_IV32,
"DES_IV64", "DES_IV64",
"DES", "DES_CBC",
"3DES", "3DES_CBC",
"RC5", "RC5_CBC",
"IDEA", "IDEA_CBC",
"CAST", "CAST_CBC",
"BLOWFISH", "BLOWFISH_CBC",
"3IDEA", "3IDEA",
"DES_IV32"); "DES_IV32");
ENUM_NEXT(encryption_algorithm_names, ENCR_NULL, ENCR_AES_CCM_ICV16, ENCR_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, ENUM_NEXT(encryption_algorithm_names, ENCR_CAMELLIA_CBC, ENCR_CAMELLIA_CCM_ICV16, ENCR_NULL_AUTH_AES_GMAC,
"CAMELLIA_CBC", "CAMELLIA_CBC",
"CAMELLIA_CTR", "CAMELLIA_CTR",
"CAMELLIA_CCM_ICV8", "CAMELLIA_CCM_8",
"CAMELLIA_CCM_ICV12", "CAMELLIA_CCM_12",
"CAMELLIA_CCM_ICV16"); "CAMELLIA_CCM_16");
ENUM_NEXT(encryption_algorithm_names, ENCR_UNDEFINED, ENCR_TWOFISH_CBC, ENCR_CAMELLIA_CCM_ICV16, ENUM_NEXT(encryption_algorithm_names, ENCR_UNDEFINED, ENCR_TWOFISH_CBC, ENCR_CAMELLIA_CCM_ICV16,
"UNDEFINED", "UNDEFINED",
"DES_ECB", "DES_ECB",
+6 -6
View File
@@ -374,12 +374,12 @@ enum_names ah_transformid_names =
static const char *const esp_transform_name[] = { static const char *const esp_transform_name[] = {
"DES_IV64", "DES_IV64",
"DES", "DES_CBC",
"3DES", "3DES_CBC",
"RC5", "RC5_CBC",
"IDEA", "IDEA_CBC",
"CAST", "CAST_CBC",
"BLOWFISH", "BLOWFISH_CBC",
"3IDEA", "3IDEA",
"DES_IV32", "DES_IV32",
"RC4", "RC4",