diff options
author | Ermal <eri@pfsense.org> | 2014-03-06 20:02:06 +0100 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2014-03-06 20:02:06 +0100 |
commit | 9601df8ad5270a1d2001206938609ff53aaf1883 (patch) | |
tree | 2f4511a5dc539ace6b3273fdba7e87a30e4010e6 /etc | |
parent | da2ec3361e9ab78d08bcc088b2f7c4e348847c3e (diff) | |
download | pfsense-9601df8ad5270a1d2001206938609ff53aaf1883.zip pfsense-9601df8ad5270a1d2001206938609ff53aaf1883.tar.gz |
Use a step of 64 here too to comply with what the daemon can parse/understand
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/ipsec.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/ipsec.inc b/etc/inc/ipsec.inc index 140db8b..efcbab9 100644 --- a/etc/inc/ipsec.inc +++ b/etc/inc/ipsec.inc @@ -60,7 +60,7 @@ $peer_identifier_list = array( $p1_ealgos = array( 'aes' => array( 'name' => 'AES', 'keysel' => array( 'lo' => 128, 'hi' => 256, 'step' => 64 ) ), - 'blowfish' => array( 'name' => 'Blowfish', 'keysel' => array( 'lo' => 128, 'hi' => 256, 'step' => 8 ) ), + 'blowfish' => array( 'name' => 'Blowfish', 'keysel' => array( 'lo' => 128, 'hi' => 256, 'step' => 64 ) ), '3des' => array( 'name' => '3DES' ), 'cast128' => array( 'name' => 'CAST128' ), 'des' => array( 'name' => 'DES' )); |