diff options
author | Kim Alvefur <zash@zash.se> | 2013-09-03 13:13:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-09-03 13:13:31 +0200 |
commit | 7f9fe6d4cd5ddd4d260b68e57a8dc378175ef627 (patch) | |
tree | 65bba637145ae1096e20575dfa0ff8ce66e38b11 /core | |
parent | cf82f353b7737e5fc59eae086424d8ef63951934 (diff) | |
download | prosody-7f9fe6d4cd5ddd4d260b68e57a8dc378175ef627.tar.gz prosody-7f9fe6d4cd5ddd4d260b68e57a8dc378175ef627.zip |
certmanager: Allow for specifying the dhparam option as a path to a file instead of a callback
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 5aec22b3..c1ce468d 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -72,6 +72,17 @@ function create_context(host, mode, user_ssl_config) dhparam = user_ssl_config.dhparam; }; + -- LuaSec expects dhparam to be a callback that takes two arguments. + -- We ignore those because it is mostly used for having a separate + -- set of params for EXPORT ciphers, which we don't have by default. + if type(user_ssl_config.dhparam) == "string" then + local f, err = io_open(resolve_path(user_ssl_config.dhparam)); + if not f then return nil, "Could not open DH parameters: "..err end + local dhparam = f:read("*a"); + f:close(); + user_ssl_config.dhparam = function() return dhparam; end + end + local ctx, err = ssl_newcontext(ssl_config); -- COMPAT: LuaSec 0.4.1 ignores the cipher list from the config, so we have to take |