diff options
author | jim-p <jimp@pfsense.org> | 2010-07-13 17:30:59 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-07-13 17:30:59 -0400 |
commit | 2635222d8c2b1b9a950a8e3b8bb9911e90e705da (patch) | |
tree | 420b4d1daba9f0fbdcdfd87c7fe84aaeeb935057 /etc/inc/openvpn.inc | |
parent | d2c89b6207b8c21a253e29fb5999113413318c9b (diff) | |
download | pfsense-2635222d8c2b1b9a950a8e3b8bb9911e90e705da.zip pfsense-2635222d8c2b1b9a950a8e3b8bb9911e90e705da.tar.gz |
Add OpenVPN none/null cipher.
Diffstat (limited to 'etc/inc/openvpn.inc')
-rw-r--r-- | etc/inc/openvpn.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc index 3a9701a..a529322 100644 --- a/etc/inc/openvpn.inc +++ b/etc/inc/openvpn.inc @@ -168,7 +168,7 @@ function openvpn_get_cipherlist() { $words = explode(' ', $line); $ciphers[$words[0]] = "{$words[0]} {$words[1]}"; } - + $ciphers["none"] = "None (No Encryption)"; return $ciphers; } |