mod_auth_internal_hashed: Fix deleting users

This commit is contained in:
Kim Alvefur 2010-08-16 18:51:22 +02:00
parent 246e69fb57
commit e535c73ca3

View file

@ -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);