diff options
author | Rob Crittenden <rcritten@redhat.com> | 2014-10-16 14:05:05 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2014-10-16 16:57:31 -0400 |
commit | 78c17097186a8cacfb237af67fdd87599a727e88 (patch) | |
tree | f7fe4ab10f7207d958cbd9c294c99aafbb06e9d6 /mod_nss.c | |
parent | 1e23537dbdaf9388afa12500af6f69a6ec7da784 (diff) | |
download | mod_nss-78c17097186a8cacfb237af67fdd87599a727e88.tar.gz mod_nss-78c17097186a8cacfb237af67fdd87599a727e88.tar.xz mod_nss-78c17097186a8cacfb237af67fdd87599a727e88.zip |
Add support for enabling TLS v1.2
If support is available in NSS then it is just a matter of including
TLS 1.2 in the protocol range.
Diffstat (limited to 'mod_nss.c')
-rw-r--r-- | mod_nss.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -90,7 +90,7 @@ static const command_rec nss_config_cmds[] = { "(`[+-]XXX,...,[+-]XXX' - see manual)") SSL_CMD_SRV(Protocol, RAW_ARGS, "Enable the various SSL protocols" - "(`[SSLv2|SSLv3|TLSv1.0|TLSv1.1|all] ...' - see manual)") + "(`[SSLv2|SSLv3|TLSv1.0|TLSv1.1|TLSv1.2|all] ...' - see manual)") SSL_CMD_ALL(VerifyClient, TAKE1, "SSL Client Authentication " "(`none', `optional', `require'") @@ -135,7 +135,7 @@ static const command_rec nss_config_cmds[] = { "(`on', `off')") SSL_CMD_SRV(ProxyProtocol, RAW_ARGS, "SSL Proxy: enable or disable SSL protocol flavors " - "(`[+-][SSLv2|SSLv3|TLSv1.0|TLSv1.1] ...' - see manual)") + "(`[+-][SSLv2|SSLv3|TLSv1.0|TLSv1.1|TLSv1.2] ...' - see manual)") SSL_CMD_SRV(ProxyCipherSuite, TAKE1, "SSL Proxy: colon-delimited list of permitted SSL ciphers " "(`XXX:...:XXX' - see manual)") |