mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.random: Open /dev/urandom read-only, make seed() a noop
This commit is contained in:
parent
78ab736548
commit
f1d3d688b0
1 changed files with 2 additions and 4 deletions
|
@ -6,11 +6,9 @@
|
|||
-- COPYING file in the source package for more information.
|
||||
--
|
||||
|
||||
local urandom = assert(io.open("/dev/urandom", "r+"));
|
||||
local urandom = assert(io.open("/dev/urandom", "r"));
|
||||
|
||||
local function seed(x)
|
||||
urandom:write(x);
|
||||
urandom:flush();
|
||||
local function seed()
|
||||
end
|
||||
|
||||
local function bytes(n)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue