util.hmac: Fix a global set

This commit is contained in:
Matthew Wild 2009-07-05 17:06:22 +01:00
parent d1ee8e0f53
commit d9b3e41347

View file

@ -4,7 +4,7 @@ local xor = require "bit".bxor
module "hmac" module "hmac"
local function arraystr(array) local function arraystr(array)
t = {} local t = {}
for i = 1,table.getn(array) do for i = 1,table.getn(array) do
table.insert(t, string.char(array[i])) table.insert(t, string.char(array[i]))
end end