diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-11-10 18:46:48 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-11-10 18:46:48 +0000 |
commit | db79e6ab908b37087f01c817afa7a7519a3fe2cc (patch) | |
tree | ff971b23e03bf24b165220a41b8efb650821d7f3 /core | |
parent | 3f4da41e27d0e9f8a6bf526a72d55fe97205a9c4 (diff) | |
download | prosody-db79e6ab908b37087f01c817afa7a7519a3fe2cc.tar.gz prosody-db79e6ab908b37087f01c817afa7a7519a3fe2cc.zip |
certmanager: Update default cipher string to prefer forward-secrecy over cipher strength and to disable triple-DES (weaker and much slower than AES)
Diffstat (limited to 'core')
-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 0503f40e..1a8da6a6 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:!DSS:!aNULL@STRENGTH"; + ciphers = user_ssl_config.ciphers or "HIGH+kEDH:HIGH+kEECDH:HIGH+kRSA:!DSS:!3DES:!aNULL"; dhparam = user_ssl_config.dhparam; }; |