From 7cec30ad8df157f1a03b52bae86b73b03fbec208 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 13 Mar 2007 14:55:03 +0000 Subject: [PATCH] added AES-192/256 proposals to IKE --- src/charon/config/proposal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/charon/config/proposal.c b/src/charon/config/proposal.c index 9186815cd..dcab8cbdd 100644 --- a/src/charon/config/proposal.c +++ b/src/charon/config/proposal.c @@ -560,6 +560,8 @@ proposal_t *proposal_create_default(protocol_id_t protocol) { case PROTO_IKE: add_algorithm(this, ENCRYPTION_ALGORITHM, ENCR_AES_CBC, 128); + add_algorithm(this, ENCRYPTION_ALGORITHM, ENCR_AES_CBC, 192); + add_algorithm(this, ENCRYPTION_ALGORITHM, ENCR_AES_CBC, 256); add_algorithm(this, ENCRYPTION_ALGORITHM, ENCR_3DES, 0); add_algorithm(this, INTEGRITY_ALGORITHM, AUTH_HMAC_SHA2_256_128, 0); add_algorithm(this, INTEGRITY_ALGORITHM, AUTH_HMAC_SHA1_96, 0);