mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal_hashed: Added SCRAM-SHA-1 support for SASL.
This commit is contained in:
parent
9e6d86c402
commit
21d34b1fb9
1 changed files with 10 additions and 0 deletions
|
@ -117,6 +117,16 @@ function new_hashpass_provider(host)
|
|||
return "", nil;
|
||||
end
|
||||
return usermanager.test_password(prepped_username, password, realm), true;
|
||||
end,
|
||||
scram_sha_1 = function(username, realm)
|
||||
local credentials = datamanager.load(username, host, "accounts") or {};
|
||||
if credentials.password then
|
||||
usermanager.set_password(username, credentials.password);
|
||||
credentials = datamanager.load(username, host, "accounts") or {};
|
||||
end
|
||||
local salted_password, iteration_count, salt = credentials.hashpass, credentials.iteration_count, credentials.salt;
|
||||
salted_password = salted_password and salted_password:gsub("..", function(x) return string.char(tonumber(x, 16)); end);
|
||||
return salted_password, iteration_count, salt, true;
|
||||
end
|
||||
};
|
||||
return new_sasl(realm, testpass_authentication_profile);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue