aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-06-13 00:04:04 +0100
committerMatthew Wild <mwild1@gmail.com>2013-06-13 00:04:04 +0100
commit66f373368247ae2d21646014f9742124be54c907 (patch)
tree65df41a76af9ea90ca8c35285f154dbd67d9302c
parent83a04db97f0e9ad24ea9c3db372cee4cf7954d89 (diff)
downloadprosody-66f373368247ae2d21646014f9742124be54c907.tar.gz
prosody-66f373368247ae2d21646014f9742124be54c907.zip
certmanager: Set ssl.curve to 'secp384r1' by default, to enable ECC ciphers
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index f9a54cb1..905a03cd 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -62,7 +62,7 @@ function create_context(host, mode, user_ssl_config)
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;
};