diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-11-21 02:11:09 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-11-21 02:11:09 +0000 |
commit | d3b762824a7a1039998c94cc6e9f3ffc67b9d7ec (patch) | |
tree | 999fa993e1be4d806f987084f99b913cd6cec6af | |
parent | 6f8b64d3086feda0cc6fc6b8637a45b32bfd8f6a (diff) | |
download | prosody-d3b762824a7a1039998c94cc6e9f3ffc67b9d7ec.tar.gz prosody-d3b762824a7a1039998c94cc6e9f3ffc67b9d7ec.zip |
certmanager: Further cipher string tweaking. Re-enable ciphers required for DSA and ECDH certs/keys.
-rw-r--r-- | core/certmanager.lua | 2 |
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; }; |