adding enum elements for MD4 and DES (ECB)

This commit is contained in:
Tobias Brunner
2009-02-18 19:45:46 +00:00
parent b8fa437fb7
commit b250665f58
4 changed files with 10 additions and 4 deletions
+3 -1
View File
@@ -41,5 +41,7 @@ ENUM_NEXT(encryption_algorithm_names, ENCR_AES_GCM_ICV8, ENCR_AES_GCM_ICV16, ENC
"AES_GCM_8",
"AES_GCM_12",
"AES_GCM_16");
ENUM_END(encryption_algorithm_names, ENCR_AES_GCM_ICV16);
ENUM_NEXT(encryption_algorithm_names, ENCR_DES_ECB, ENCR_DES_ECB, ENCR_AES_GCM_ICV16,
"DES_ECB");
ENUM_END(encryption_algorithm_names, ENCR_DES_ECB);
+2 -1
View File
@@ -51,7 +51,8 @@ enum encryption_algorithm_t {
ENCR_AES_CCM_ICV16 = 16,
ENCR_AES_GCM_ICV8 = 18,
ENCR_AES_GCM_ICV12 = 19,
ENCR_AES_GCM_ICV16 = 20
ENCR_AES_GCM_ICV16 = 20,
ENCR_DES_ECB = 1024
};
/**