mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.random: Remove obsolete noop seed function
This commit is contained in:
parent
1a74016edf
commit
880a7c3e32
2 changed files with 0 additions and 10 deletions
|
@ -22,10 +22,4 @@ describe("util.uuid", function()
|
|||
end
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#seed()", function()
|
||||
it("should return nothing", function()
|
||||
assert.is_nil(uuid.seed("random string here"), "seed doesn't return anything");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
|
@ -11,9 +11,6 @@ if ok then return crand; end
|
|||
|
||||
local urandom, urandom_err = io.open("/dev/urandom", "r");
|
||||
|
||||
local function seed()
|
||||
end
|
||||
|
||||
local function bytes(n)
|
||||
return urandom:read(n);
|
||||
end
|
||||
|
@ -25,6 +22,5 @@ if not urandom then
|
|||
end
|
||||
|
||||
return {
|
||||
seed = seed;
|
||||
bytes = bytes;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue