# HG changeset patch # User Matthew Wild # Date 1371080741 -3600 # Node ID b7ebeae14053d3f627f85406710607b6ff6be904 # Parent c1021a2e7071c3bc6933921671aa08bcdef3ccad certmanager: Add single_dh_use and single_ecdh_use to default options diff -r c1021a2e7071 -r b7ebeae14053 core/certmanager.lua --- a/core/certmanager.lua Thu Jun 13 00:04:04 2013 +0100 +++ b/core/certmanager.lua Thu Jun 13 00:45:41 2013 +0100 @@ -44,6 +44,11 @@ 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;