mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Adding a parameter for realm to the password_callback.
This commit is contained in:
parent
8be1d2e2d6
commit
968abac469
1 changed files with 4 additions and 4 deletions
|
@ -64,15 +64,15 @@ local function handle_status(session, status)
|
|||
end
|
||||
end
|
||||
|
||||
local function password_callback(node, host, mechanism, decoder)
|
||||
local password = (datamanager_load(node, host, "accounts") or {}).password; -- FIXME handle hashed passwords
|
||||
local function password_callback(node, hostname, realm, mechanism, decoder)
|
||||
local password = (datamanager_load(node, hostname, "accounts") or {}).password; -- FIXME handle hashed passwords
|
||||
local func = function(x) return x; end;
|
||||
if password then
|
||||
if mechanism == "PLAIN" then
|
||||
return func, password;
|
||||
elseif mechanism == "DIGEST-MD5" then
|
||||
if decoder then node, host, password = decoder(node), decoder(host), decoder(password); end
|
||||
return func, md5(node..":"..host..":"..password);
|
||||
if decoder then node, hostname, password = decoder(node), decoder(hostname), decoder(password); end
|
||||
return func, md5(node..":"..realm..":"..password);
|
||||
end
|
||||
end
|
||||
return func, nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue