mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.random: Throw different error for EOL condition
This commit is contained in:
parent
c42ccf1bcc
commit
a6e44a24a0
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,11 @@ local urandom, urandom_err = io.open("/dev/urandom", "r");
|
||||||
local function bytes(n)
|
local function bytes(n)
|
||||||
local data, err = urandom:read(n);
|
local data, err = urandom:read(n);
|
||||||
if not data then
|
if not data then
|
||||||
|
if err then
|
||||||
error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err));
|
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
|
end
|
||||||
return data;
|
return data;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue