Software /
code /
prosody
Diff
core/certmanager.lua @ 5676:c1021a2e7071
certmanager: Set ssl.curve to 'secp384r1' by default, to enable ECC ciphers
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 13 Jun 2013 00:04:04 +0100 |
parent | 5673:9ca4d1ada906 |
child | 5677:9afc94c4346e |
child | 5678:b7ebeae14053 |
line wrap: on
line diff
--- a/core/certmanager.lua Wed Jun 12 16:53:51 2013 +0200 +++ b/core/certmanager.lua Thu Jun 13 00:04:04 2013 +0100 @@ -62,7 +62,7 @@ verifyext = user_ssl_config.verifyext or default_verifyext; options = user_ssl_config.options or default_options; depth = user_ssl_config.depth; - curve = user_ssl_config.curve; + curve = user_ssl_config.curve or "secp384r1"; dhparam = user_ssl_config.dhparam; };