mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
[fix] uses a cryptographically secure source of randomness
This commit is contained in:
parent
46b6d1048e
commit
c5bb6ef2ae
1 changed files with 9 additions and 4 deletions
13
init.lua
13
init.lua
|
@ -27,12 +27,17 @@ local config = require "config"
|
||||||
flashs = {}
|
flashs = {}
|
||||||
i18n = {}
|
i18n = {}
|
||||||
|
|
||||||
|
-- convert a string to a hex
|
||||||
|
function tohex(str)
|
||||||
|
return (str:gsub('.', function (c)
|
||||||
|
return string.format('%02X', string.byte(c))
|
||||||
|
end))
|
||||||
|
end
|
||||||
|
|
||||||
-- Efficient function to get a random string
|
-- Efficient function to get a random string
|
||||||
function random_string()
|
function random_string()
|
||||||
math.randomseed( tonumber(tostring(socket.gettime()*10000):reverse()) )
|
local random_bytes = io.open("/dev/urandom"):read(64);
|
||||||
str = tostring(math.random()):sub(3)
|
return tohex(random_bytes);
|
||||||
socket.sleep(1e-400)
|
|
||||||
return str
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Load translations in the "i18n" above table
|
-- Load translations in the "i18n" above table
|
||||||
|
|
Loading…
Reference in a new issue