Changeset

402:81b109281879

Merge with Zash
author Matthew Wild <mwild1@gmail.com>
date Tue, 09 Feb 2016 23:40:12 +0000
parents 400:0db9cb909cf1 (current diff) 401:7be4ebefd1f4 (diff)
children 403:6f4f60ebb796
files
diffstat 1 files changed, 8 insertions(+), 32 deletions(-) [+]
line wrap: on
line diff
--- a/util/random.lua	Tue Feb 09 23:39:31 2016 +0000
+++ b/util/random.lua	Tue Feb 09 23:40:12 2016 +0000
@@ -6,38 +6,14 @@
 -- COPYING file in the source package for more information.
 --
 
-local tostring = tostring;
-local os_time = os.time;
-local os_clock = os.clock;
-local ceil = math.ceil;
-local H = require "util.hashes".sha1;
+local urandom = io.open("/dev/urandom", "r");
 
-local last_uniq_time = 0;
-local function uniq_time()
-	local new_uniq_time = os_time();
-	if last_uniq_time >= new_uniq_time then new_uniq_time = last_uniq_time + 1; end
-	last_uniq_time = new_uniq_time;
-	return new_uniq_time;
-end
-
-local function new_random(x)
-	return H(x..os_clock()..tostring({}));
+if urandom then
+	return {
+		seed = function () end;
+		bytes = function (n) return urandom:read(n); end
+	};
 end
 
-local buffer = new_random(uniq_time());
-
-local function seed(x)
-	buffer = new_random(buffer..x);
-end
-
-local function bytes(n)
-	if #buffer < n+4 then seed(uniq_time()); end
-	local r = buffer:sub(1, n);
-	buffer = buffer:sub(n+1);
-	return r;
-end
-
-return {
-	seed = seed;
-	bytes = bytes;
-};
+local crypto = require "crypto"
+return crypto.rand;