mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Pass on errors from password hash function (fixes #1477)
This commit is contained in:
parent
faa6cbefaf
commit
d464d7edb1
1 changed files with 6 additions and 0 deletions
|
@ -68,6 +68,9 @@ function provider.set_password(username, password)
|
|||
account.salt = generate_uuid();
|
||||
account.iteration_count = max(account.iteration_count or 0, default_iteration_count);
|
||||
local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, account.salt, account.iteration_count);
|
||||
if not valid then
|
||||
return valid, stored_key;
|
||||
end
|
||||
local stored_key_hex = to_hex(stored_key);
|
||||
local server_key_hex = to_hex(server_key);
|
||||
|
||||
|
@ -99,6 +102,9 @@ function provider.create_user(username, password)
|
|||
end
|
||||
local salt = generate_uuid();
|
||||
local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, salt, default_iteration_count);
|
||||
if not valid then
|
||||
return valid, stored_key;
|
||||
end
|
||||
local stored_key_hex = to_hex(stored_key);
|
||||
local server_key_hex = to_hex(server_key);
|
||||
return accounts:set(username, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue