mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_auth_internal_hashed: Update TODO comments to COMPAT
This commit is contained in:
parent
6cd96e6121
commit
02dddbbc8d
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ local new_sasl = require "util.sasl".new;
|
|||
local nodeprep = require "util.encodings".stringprep.nodeprep;
|
||||
local hosts = hosts;
|
||||
|
||||
-- TODO: remove these two lines in near future
|
||||
-- COMPAT w/old trunk: remove these two lines before 0.8 release
|
||||
local hmac_sha1 = require "util.hmac".sha1;
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
|
||||
|
@ -76,7 +76,7 @@ function new_hashpass_provider(host)
|
|||
end
|
||||
|
||||
-- convert hexpass to stored_key and server_key
|
||||
-- TODO: remove this in near future
|
||||
-- COMPAT w/old trunk: remove before 0.8 release
|
||||
if credentials.hashpass then
|
||||
local salted_password = from_hex(credentials.hashpass);
|
||||
credentials.stored_key = sha1(hmac_sha1(salted_password, "Client Key"), true);
|
||||
|
@ -155,7 +155,7 @@ function new_hashpass_provider(host)
|
|||
end
|
||||
|
||||
-- convert hexpass to stored_key and server_key
|
||||
-- TODO: remove this in near future
|
||||
-- COMPAT w/old trunk: remove before 0.8 release
|
||||
if credentials.hashpass then
|
||||
local salted_password = from_hex(credentials.hashpass);
|
||||
credentials.stored_key = sha1(hmac_sha1(salted_password, "Client Key"), true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue