mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Remove COMPAT code (upgrading old hashed storage format from pre-0.8)
This commit is contained in:
parent
a4d38eb601
commit
90342aaf3c
1 changed files with 0 additions and 24 deletions
|
@ -15,10 +15,6 @@ local generate_uuid = require "util.uuid".generate;
|
|||
local new_sasl = require "util.sasl".new;
|
||||
local nodeprep = require "util.encodings".stringprep.nodeprep;
|
||||
|
||||
-- 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;
|
||||
|
||||
local to_hex;
|
||||
do
|
||||
local function replace_byte_with_hex(byte)
|
||||
|
@ -66,16 +62,6 @@ function new_hashpass_provider(host)
|
|||
return nil, "Auth failed. Stored salt and iteration count information is not complete.";
|
||||
end
|
||||
|
||||
-- convert hexpass to stored_key and server_key
|
||||
-- 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);
|
||||
credentials.server_key = to_hex(hmac_sha1(salted_password, "Server Key"));
|
||||
credentials.hashpass = nil
|
||||
datamanager.store(username, host, "accounts", credentials);
|
||||
end
|
||||
|
||||
local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, credentials.salt, credentials.iteration_count);
|
||||
|
||||
local stored_key_hex = to_hex(stored_key);
|
||||
|
@ -149,16 +135,6 @@ function new_hashpass_provider(host)
|
|||
if not credentials then return; end
|
||||
end
|
||||
|
||||
-- convert hexpass to stored_key and server_key
|
||||
-- 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);
|
||||
credentials.server_key = to_hex(hmac_sha1(salted_password, "Server Key"));
|
||||
credentials.hashpass = nil
|
||||
datamanager.store(username, host, "accounts", credentials);
|
||||
end
|
||||
|
||||
local stored_key, server_key, iteration_count, salt = credentials.stored_key, credentials.server_key, credentials.iteration_count, credentials.salt;
|
||||
stored_key = stored_key and from_hex(stored_key);
|
||||
server_key = server_key and from_hex(server_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue