diff options
Diffstat (limited to 'util/hmac.lua')
-rw-r--r-- | util/hmac.lua | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/util/hmac.lua b/util/hmac.lua index b3098380..5f4467cf 100644 --- a/util/hmac.lua +++ b/util/hmac.lua @@ -1,15 +1,18 @@ local hashes = require "util.hashes" local xor = require "bit".bxor +local t_insert, t_concat = table.insert, table.concat; +local s_char = string.char; + module "hmac" local function arraystr(array) - t = {} - for i = 1,table.getn(array) do - table.insert(t, string.char(array[i])) + local t = {} + for i = 1,#array do + t_insert(t, s_char(array[i])) end - return table.concat(t) + return t_concat(t) end --[[ |