Software /
code /
prosody
Diff
util/sasl/scram.lua @ 2257:c1a85068ca36
Merge with Tobias
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 28 Nov 2009 17:40:49 +0000 |
parent | 2255:92e329e1cd99 |
child | 2265:7fe644057dc2 |
line wrap: on
line diff
--- a/util/sasl/scram.lua Sat Nov 28 17:40:37 2009 +0000 +++ b/util/sasl/scram.lua Sat Nov 28 17:40:49 2009 +0000 @@ -54,7 +54,7 @@ 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 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);