From 76bec1ab8790964c9714f7f8497edfa1a6c53409 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Wed, 25 Nov 2015 18:33:29 -0600 Subject: Remove GCM options from phase 1, it's only supported in P2. Remove DES while here. --- src/etc/inc/ipsec.inc | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/etc/inc/ipsec.inc') diff --git a/src/etc/inc/ipsec.inc b/src/etc/inc/ipsec.inc index c951ed2..5afb26c 100644 --- a/src/etc/inc/ipsec.inc +++ b/src/etc/inc/ipsec.inc @@ -100,13 +100,9 @@ $ipsec_idhandling = array( global $p1_ealgos; $p1_ealgos = array( 'aes' => array('name' => 'AES', 'keysel' => array('lo' => 128, 'hi' => 256, 'step' => 64)), - 'aes128gcm' => array('name' => 'AES128-GCM', 'keysel' => array('lo' => 64, 'hi' => 128, 'step' => 32)), - 'aes192gcm' => array('name' => 'AES192-GCM', 'keysel' => array('lo' => 64, 'hi' => 128, 'step' => 32)), - 'aes256gcm' => array('name' => 'AES256-GCM', 'keysel' => array('lo' => 64, 'hi' => 128, 'step' => 32)), 'blowfish' => array('name' => 'Blowfish', 'keysel' => array('lo' => 128, 'hi' => 256, 'step' => 64)), '3des' => array('name' => '3DES'), 'cast128' => array('name' => 'CAST128'), - 'des' => array('name' => 'DES')); global $p2_ealgos; $p2_ealgos = array( @@ -117,7 +113,6 @@ $p2_ealgos = array( 'blowfish' => array('name' => 'Blowfish', 'keysel' => array('lo' => 128, 'hi' => 256, 'step' => 64)), '3des' => array('name' => '3DES'), 'cast128' => array('name' => 'CAST128'), - 'des' => array('name' => 'DES')); global $p1_halgos; $p1_halgos = array( -- cgit v1.1