util/sasl.lua

changeset 1518
9707dfa80980
parent 1485
fbefd16d2955
child 1585
edc066730d11
child 1720
c34409a5fdee
--- a/util/sasl.lua	Fri Jul 10 02:25:14 2009 +0100
+++ b/util/sasl.lua	Fri Jul 10 02:26:43 2009 +0100
@@ -33,7 +33,7 @@
 local function new_plain(realm, password_handler)
 	local object = { mechanism = "PLAIN", realm = realm, password_handler = password_handler}
 	function object.feed(self, message)
-        
+	
 		if message == "" or message == nil then return "failure", "malformed-request" end
 		local response = message
 		local authorization = s_match(response, "([^&%z]+)")
@@ -229,7 +229,7 @@
 				
 				HA1 = md5(A1, true);
 				HA2 = md5(A2, true);
-        
+				
 				KD = HA1..":"..response["nonce"]..":"..response["nc"]..":"..response["cnonce"]..":"..response["qop"]..":"..HA2
 				local rspauth = md5(KD, true);
 				self.authenticated = true;

mercurial