mod_auth_internal_hashed: Coverting salted password to stored_key and server_key.
authorTobias Markmann <tm@ayena.de>
Tue, 8 Jun 2010 13:02:53 +0000 (15:02 +0200)
committerTobias Markmann <tm@ayena.de>
Tue, 8 Jun 2010 13:02:53 +0000 (15:02 +0200)
plugins/mod_auth_internal_hashed.lua

index c1e56ab6a643cadd5026546ee6a973fdd948d0ef..4e55458494a40a346032db6bcac7992a0ce3b2c3 100644 (file)
@@ -22,6 +22,10 @@ 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
+local hmac_sha1 = require "util.hmac".sha1;
+local sha1 = require "util.hashes".sha1;
+
 local prosody = _G.prosody;
 
 local is_cyrus = usermanager.is_cyrus;
@@ -53,9 +57,20 @@ function new_hashpass_provider(host)
                        return nil, "Auth failed. Stored salt and iteration count information is not complete.";
                end
                
-               if credentials.saltedPasswordSHA1
+               local valid, stored_key, server_key
+               
+               if credentials.hexpass then
+                       -- convert hexpass to stored_key and server_key
+                       -- TODO: remove this in near future
+                       valid = true;
+                       local salted_password = credentials.hexpass:gsub("..", function(x) return string.char(tonumber(x, 16)); end);
+                       
+                       stored_key = sha1(hmac_sha1(salted_password, "Client Key"))
+                       server_key = hmac_sha1(salted_password, "Server Key");
+               else
+                       valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, credentials.salt, credentials.iteration_count);
+               end
                
-               local valid, stored_key, server_key = getAuthenticationDatabaseSHA1(password, credentials.salt, credentials.iteration_count);
                local stored_key_hex = stored_key:gsub(".", function (c) return ("%02x"):format(c:byte()); end);
                local server_key_hex = server_key:gsub(".", function (c) return ("%02x"):format(c:byte()); end);