simple-sso/test/alt/resty/random.lua

12 lines
164 B
Lua

local function bytes(count, _)
local b = ""
for i = 1, count do
b = b .. string.char(math.random(0, 255))
end
return b
end
return {
bytes = bytes,
}