diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-06-13 00:45:41 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-06-13 00:45:41 +0100 |
commit | 47a2577f269c3596043abec6e0ccbe1cf201e9f2 (patch) | |
tree | 8c2ff5b68c1c484b1c4ee8607a8994bd64d7f480 /core | |
parent | 442955c94c7fa4ed6c26eb159676e74a7bed98ba (diff) | |
download | prosody-47a2577f269c3596043abec6e0ccbe1cf201e9f2.tar.gz prosody-47a2577f269c3596043abec6e0ccbe1cf201e9f2.zip |
certmanager: Add single_dh_use and single_ecdh_use to default options
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 905a03cd..4bcac40d 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -44,6 +44,11 @@ if luasec_has_no_compression and configmanager.get("*", "ssl_compression") ~= tr default_options[#default_options+1] = "no_compression"; end +if luasec_has_no_compression then -- Has no_compression? Then it has these too... + default_options[#default_options+1] = "single_dh_use"; + default_options[#default_options+1] = "single_ecdh_use"; +end + function create_context(host, mode, user_ssl_config) user_ssl_config = user_ssl_config or default_ssl_config; |