aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-11-21 02:11:09 +0000
committerMatthew Wild <mwild1@gmail.com>2013-11-21 02:11:09 +0000
commit2565ed535e094d47a4ecec7862b1da79089a71ae (patch)
tree999fa993e1be4d806f987084f99b913cd6cec6af
parent5f4e34aa7388e8a230704a78f7fc0f3f634875fe (diff)
downloadprosody-2565ed535e094d47a4ecec7862b1da79089a71ae.tar.gz
prosody-2565ed535e094d47a4ecec7862b1da79089a71ae.zip
certmanager: Further cipher string tweaking. Re-enable ciphers required for DSA and ECDH certs/keys.
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 976b0a88..d6784a96 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -70,7 +70,7 @@ function create_context(host, mode, user_ssl_config)
options = user_ssl_config.options or default_options;
depth = user_ssl_config.depth;
curve = user_ssl_config.curve or "secp384r1";
- ciphers = user_ssl_config.ciphers or "HIGH+kEDH:HIGH+kEECDH:HIGH+kRSA:!DSS:!3DES:!aNULL";
+ ciphers = user_ssl_config.ciphers or "HIGH+kEDH:HIGH+kEECDH:HIGH:!PSK:!SRP:!3DES:!aNULL";
dhparam = user_ssl_config.dhparam;
};