From: Martin Willi Date: Tue, 13 Mar 2007 14:55:03 +0000 (-0000) Subject: added AES-192/256 proposals to IKE X-Git-Tag: 4.1.0~76 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7cec30ad8df157f1a03b52bae86b73b03fbec208;p=thirdparty%2Fstrongswan.git added AES-192/256 proposals to IKE --- diff --git a/src/charon/config/proposal.c b/src/charon/config/proposal.c index 9186815cdd..dcab8cbdd5 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);