mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Add NODEprepping to SASL Digest-MD5 authentication handling.
This commit is contained in:
parent
ae3ee66fa1
commit
9be45d05d6
1 changed files with 5 additions and 1 deletions
|
@ -84,7 +84,11 @@ local function credentials_callback(mechanism, ...)
|
|||
elseif mechanism == "DIGEST-MD5" then
|
||||
function func(x) return x; end
|
||||
local node, domain, realm, decoder = ...;
|
||||
local password = usermanager_get_password(node, domain);
|
||||
local prepped_node = nodeprep(node);
|
||||
if not prepped_node then
|
||||
return func, nil;
|
||||
end
|
||||
local password = usermanager_get_password(prepped_node, domain);
|
||||
if password then
|
||||
if decoder then
|
||||
node, realm, password = decoder(node), decoder(realm), decoder(password);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue