mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Fix deleting users
This commit is contained in:
parent
246e69fb57
commit
e535c73ca3
1 changed files with 3 additions and 0 deletions
|
@ -125,6 +125,9 @@ function new_hashpass_provider(host)
|
|||
end
|
||||
|
||||
function provider.create_user(username, password)
|
||||
if password == nil then
|
||||
return datamanager.store(username, host, "accounts", {});
|
||||
end
|
||||
local salt = generate_uuid();
|
||||
local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, salt, iteration_count);
|
||||
local stored_key_hex = to_hex(stored_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue