From ca2df50f6b13b57f28b315b022e1b7d2558ea898 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Mon, 8 Dec 2008 03:27:02 +0500 Subject: Removed the unnecessary idna.to_ascii applied to the DIGEST-MD5 disgest-uri response values, which was causing auth failures with some clients. --- util/sasl.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/sasl.lua b/util/sasl.lua index 12e7df4f..311c3aff 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -205,7 +205,7 @@ local function new_digest_md5(realm, password_handler) elseif Y == false then return "failure", "account-disabled" end local A1 = Y..":"..response["nonce"]..":"..response["cnonce"]--:authzid - local A2 = "AUTHENTICATE:"..protocol.."/"..idna_ascii(domain) + local A2 = "AUTHENTICATE:"..protocol.."/"..domain; local HA1 = md5(A1, true) local HA2 = md5(A2, true) @@ -215,7 +215,7 @@ local function new_digest_md5(realm, password_handler) if response_value == response["response"] then -- calculate rspauth - A2 = ":"..protocol.."/"..idna_ascii(domain) + A2 = ":"..protocol.."/"..domain; HA1 = md5(A1, true) HA2 = md5(A2, true) -- cgit v1.2.3