mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
hostmanager, mod_dialback: Move generation of dialback secret out of core
This commit is contained in:
parent
06f4d45553
commit
105ceb9cff
2 changed files with 4 additions and 2 deletions
|
@ -74,7 +74,6 @@ function activate(host, host_config)
|
|||
host = host;
|
||||
s2sout = {};
|
||||
events = events_new();
|
||||
dialback_secret = configmanager.get(host, "dialback_secret") or uuid_gen();
|
||||
send = host_send;
|
||||
modules = {};
|
||||
};
|
||||
|
|
|
@ -13,13 +13,16 @@ local log = module._log;
|
|||
local st = require "util.stanza";
|
||||
local sha256_hash = require "util.hashes".sha256;
|
||||
local nameprep = require "util.encodings".stringprep.nameprep;
|
||||
local uuid_gen = require"util.uuid".generate;
|
||||
|
||||
local xmlns_stream = "http://etherx.jabber.org/streams";
|
||||
|
||||
local dialback_requests = setmetatable({}, { __mode = 'v' });
|
||||
|
||||
local dialback_secret = module.host .. (module:get_option_string("dialback_secret") or uuid_gen());
|
||||
|
||||
function generate_dialback(id, to, from)
|
||||
return sha256_hash(id..to..from..hosts[from].dialback_secret, true);
|
||||
return sha256_hash(id..to..dialback_secret, true);
|
||||
end
|
||||
|
||||
function initiate_dialback(session)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue