util.random: Throw different error for EOL condition

This commit is contained in:
Kim Alvefur 2019-05-21 08:52:21 +02:00
parent c42ccf1bcc
commit a6e44a24a0

View file

@ -14,7 +14,11 @@ local urandom, urandom_err = io.open("/dev/urandom", "r");
local function bytes(n)
local data, err = urandom:read(n);
if not data then
error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err));
if err then
error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err));
else
error("Secure random number generator (/dev/urandom) returned an end-of-file condition");
end
end
return data;
end