mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.hmac: Some optimisations
This commit is contained in:
parent
d9b3e41347
commit
84294f210a
1 changed files with 6 additions and 3 deletions
|
@ -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)
|
||||
local t = {}
|
||||
for i = 1,table.getn(array) do
|
||||
table.insert(t, string.char(array[i]))
|
||||
for i = 1,#array do
|
||||
t_insert(t, s_char(array[i]))
|
||||
end
|
||||
|
||||
return table.concat(t)
|
||||
return t_concat(t)
|
||||
end
|
||||
|
||||
--[[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue