defined ENCR_TWOFISH and ENCR_SERPENT

This commit is contained in:
Andreas Steffen
2009-05-08 07:51:24 +02:00
parent e43b1e4a5b
commit c42d1469e6
2 changed files with 11 additions and 8 deletions
+4 -2
View File
@@ -31,7 +31,6 @@ typedef struct crypter_t crypter_t;
* Encryption algorithm, as in IKEv2 RFC 3.3.2.
*/
enum encryption_algorithm_t {
ENCR_UNDEFINED = 1024,
ENCR_DES_IV64 = 1,
ENCR_DES = 2,
ENCR_3DES = 3,
@@ -56,7 +55,10 @@ enum encryption_algorithm_t {
ENCR_CAMELLIA_CCM_ICV8 = 25,
ENCR_CAMELLIA_CCM_ICV12 = 26,
ENCR_CAMELLIA_CCM_ICV16 = 27,
ENCR_DES_ECB = 1025
ENCR_UNDEFINED = 1024,
ENCR_DES_ECB = 1025,
ENCR_SERPENT = 1026,
ENCR_TWOFISH = 1027
};
/**