aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-11-20 00:27:26 +0100
committerKim Alvefur <zash@zash.se>2017-11-20 00:27:26 +0100
commit0158bad7ad35279d64096ee86defdf4c04532ece (patch)
tree572706d1393b2c35931177d8f81d140697a74e97 /core
parentb9005e7b8af2f0c707d9497d334fdc5318db55cc (diff)
downloadprosody-0158bad7ad35279d64096ee86defdf4c04532ece.tar.gz
prosody-0158bad7ad35279d64096ee86defdf4c04532ece.zip
certmanager: Set single curve conditioned on LuaSec advertising EC crypto support
Diffstat (limited to 'core')
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index e13a5d8e..f343b6d7 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -114,7 +114,7 @@ local core_defaults = {
single_ecdh_use = luasec_has.options.single_ecdh_use;
};
verifyext = { "lsec_continue", "lsec_ignore_purpose" };
- curve = "secp384r1";
+ curve = luasec_has.algorithms.ec and not luasec_has.capabilities.curves_list and "secp384r1";
curveslist = {
"X25519",
"P-384",