mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal_hashed: Fixed a traceback in account creation.
This commit is contained in:
parent
87299a523d
commit
8fcc2761e6
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ function new_hashpass_provider(host)
|
|||
function provider.create_user(username, password)
|
||||
if is_cyrus(host) then return nil, "Account creation/modification not available with Cyrus SASL."; end
|
||||
local salt = generate_uuid();
|
||||
local valid, stored_key, server_key = saltedPasswordSHA1(password, salt, iteration_count);
|
||||
local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, salt, iteration_count);
|
||||
local stored_key_hex = stored_key:gsub(".", function (c) return ("%02x"):format(c:byte()); end);
|
||||
local server_key_hex = server_key:gsub(".", function (c) return ("%02x"):format(c:byte()); end);
|
||||
return datamanager.store(username, host, "accounts", {stored_key = stored_key_hex, server_key = server_key_hex, salt = salt, iteration_count = iteration_count});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue