Diff

util/random.lua @ 7187:3d2c2f0809ee

util.crand: C binding to one of OpenSSL, Linux getrandom() or OpenBSD arc4random() CSPRNG
author Kim Alvefur <zash@zash.se>
date Mon, 22 Feb 2016 18:44:43 +0100
parent 7114:51cf09bb74eb
child 8241:e7496cff1215
child 8242:177873dc9cf3
line wrap: on
line diff
--- a/util/random.lua	Mon Feb 22 17:43:40 2016 +0100
+++ b/util/random.lua	Mon Feb 22 18:44:43 2016 +0100
@@ -6,6 +6,9 @@
 -- COPYING file in the source package for more information.
 --
 
+local ok, crand = pcall(require, "util.crand");
+if ok then return crand; end
+
 local urandom, urandom_err = io.open("/dev/urandom", "r");
 
 local function seed()