mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal_hashed: Remove debugging output.
This commit is contained in:
parent
282c761001
commit
480fa4dd0a
1 changed files with 0 additions and 1 deletions
|
@ -64,7 +64,6 @@ function new_hashpass_provider(host)
|
|||
if credentials.hashpass then
|
||||
valid = true;
|
||||
local salted_password = credentials.hashpass:gsub("..", function(x) return string.char(tonumber(x, 16)); end);
|
||||
log("debug", "salted_password in bin: %s", tostring(salted_password));
|
||||
credentials.stored_key = sha1(hmac_sha1(salted_password, "Client Key")):gsub(".", function (c) return ("%02x"):format(c:byte()); end);
|
||||
credentials.server_key = hmac_sha1(salted_password, "Server Key"):gsub(".", function (c) return ("%02x"):format(c:byte()); end);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue