mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Merge pull request #2942 from stilez/patch-22
This commit is contained in:
commit
e98865a89d
@ -103,7 +103,8 @@ $openvpn_verbosity_level = array(
|
||||
|
||||
global $openvpn_dh_lengths;
|
||||
$openvpn_dh_lengths = array(
|
||||
1024, 2048, 4096);
|
||||
1024, 2048, 3072, 4096, 7680, 8192, 15360, 16384
|
||||
);
|
||||
|
||||
global $openvpn_cert_depths;
|
||||
$openvpn_cert_depths = array(
|
||||
|
||||
@ -367,7 +367,7 @@
|
||||
<field>
|
||||
<name>keylength</name>
|
||||
<displayname>Key length</displayname>
|
||||
<description><br/>Size of the key which will be generated. The larger the key, the more security it offers, but larger keys are generally slower to use.</description>
|
||||
<description><br/>Size of the key which will be generated. The larger the key, the more security it offers, but larger keys take considerably more time to generate, and take slightly longer to validate leading to a slight slowdown in setting up new sessions (not always noticeable). As of 2016, 2048 bit is the minimum and most common selection and 4096 is the maximum in common use. For more information see <a href="https://keylength.com">keylength.com</a></description>
|
||||
<type>select</type>
|
||||
<value>2048</value>
|
||||
<bindstofield>ovpnserver->step6->keylength</bindstofield>
|
||||
@ -384,10 +384,30 @@
|
||||
<name>2048 bit</name>
|
||||
<value>2048</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>3072 bit</name>
|
||||
<value>3072</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>4096 bit</name>
|
||||
<value>4096</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>7680 bit</name>
|
||||
<value>7680</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>8192 bit</name>
|
||||
<value>8192</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>15360 bit</name>
|
||||
<value>15360</value>
|
||||
</option>
|
||||
<option>
|
||||
<name>16384 bit</name>
|
||||
<value>16384</value>
|
||||
</option>
|
||||
</options>
|
||||
</field>
|
||||
<field>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user