aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2011-01-17 16:50:21 +0100
committerTobias Markmann <tm@ayena.de>2011-01-17 16:50:21 +0100
commitbd085514c5801265370efd4d044cb8f992e67170 (patch)
treec600240a3f1018937f4866c8f3cead617cce30c8 /util/sasl
parentdd1571b3905d0c388c78920c20bbaa15c709445f (diff)
downloadprosody-bd085514c5801265370efd4d044cb8f992e67170.tar.gz
prosody-bd085514c5801265370efd4d044cb8f992e67170.zip
util.sasl.scram: Remove some debugging output.
Diffstat (limited to 'util/sasl')
-rw-r--r--util/sasl/scram.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua
index 74854619..1b6d56c8 100644
--- a/util/sasl/scram.lua
+++ b/util/sasl/scram.lua
@@ -131,12 +131,6 @@ local function scram_gen(hash_name, H_f, HMAC_f)
self.state["gs2_cbind_flag"], self.state["gs2_cbind_name"], self.state["authzid"], self.state["name"], self.state["clientnonce"]
= client_first_message:match("^(%a)=?([%a%-]*),(.*),n=(.*),r=([^,]*).*");
- -- we don't do any channel binding yet
- log("debug", "Decoded: cbind_flag: %s, cbind_name: %s, authzid: %s, name: %s, clientnonce: %s", tostring(self.state.gs2_cbind_flag),
- tostring(self.state.gs2_cbind_name),
- tostring(self.state.authzid),
- tostring(self.state.name),
- tostring(self.state.clientnonce));
if support_channel_binding then
if string.sub(self.state.gs2_cbind_flag, 0, 1) == "y" then
return "failure", "malformed-request";