Diff

util/sasl.lua @ 3092:d32935878661

util.sasl: Moving SASL authentication backends documentation to the mechanism files.
author Tobias Markmann <tm@ayena.de>
date Sun, 28 Feb 2010 22:32:12 +0100
parent 2925:692b3c6c5bd2
child 3116:90a98a6b52ac
line wrap: on
line diff
--- a/util/sasl.lua	Sun May 23 05:46:52 2010 +0500
+++ b/util/sasl.lua	Sun Feb 28 22:32:12 2010 +0100
@@ -41,27 +41,6 @@
 state = false : disabled
 state = true : enabled
 state = nil : non-existant
-
-plain:
-	function(username, realm)
-		return password, state;
-	end
-
-plain-test:
-	function(username, realm, password)
-		return true or false, state;
-	end
-
-digest-md5:
-	function(username, domain, realm, encoding) -- domain and realm are usually the same; for some broken
-												-- implementations it's not
-		return digesthash, state;
-	end
-
-digest-md5-test:
-	function(username, domain, realm, encoding, digesthash)
-		return true or false, state;
-	end
 ]]
 
 local method = {};