added AES-192/256 proposals to IKE

This commit is contained in:
Martin Willi 2007-03-13 14:55:03 +00:00
parent 3bc0b1a88d
commit 7cec30ad8d
1 changed files with 2 additions and 0 deletions

View File

@ -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);