aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl/scram.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-11-28 17:40:49 +0000
committerMatthew Wild <mwild1@gmail.com>2009-11-28 17:40:49 +0000
commitcfc34ec992be3feceed3497acb7b4b80ba7f259b (patch)
treeab9eef4b52e64e0601bf105926e77fe674a0230f /util/sasl/scram.lua
parent4267a24ab79792f5e8ea993f84a6902beaabe94a (diff)
parentb022ba7fc29418504fcbe6890a784d3cef2cb265 (diff)
downloadprosody-cfc34ec992be3feceed3497acb7b4b80ba7f259b.tar.gz
prosody-cfc34ec992be3feceed3497acb7b4b80ba7f259b.zip
Merge with Tobias
Diffstat (limited to 'util/sasl/scram.lua')
-rw-r--r--util/sasl/scram.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua
index 4413e2a6..1e9c6f7d 100644
--- a/util/sasl/scram.lua
+++ b/util/sasl/scram.lua
@@ -54,7 +54,7 @@ local function Hi(hmac, str, salt, i)
local Ust = hmac(str, salt.."\0\0\0\1");
local res = Ust;
for n=1,i-1 do
- Und = hmac(str, Ust)
+ local Und = hmac(str, Ust)
res = binaryXOR(res, Und)
Ust = Und
end
@@ -118,7 +118,7 @@ local function scram_sha_1(self, message)
local password;
if self.profile.plain then
- password, state = self.profile.plain(self.state.name, self.realm)
+ local password, state = self.profile.plain(self.state.name, self.realm)
if state == nil then return "failure", "not-authorized"
elseif state == false then return "failure", "account-disabled" end
password = saslprep(password);