util.random: Open /dev/urandom read-only, make seed() a noop

This commit is contained in:
Kim Alvefur 2016-01-12 23:48:16 +01:00
parent 78ab736548
commit f1d3d688b0

View file

@ -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)