Comparison

util/random.lua @ 12975:d10957394a3c

util: Prefix module imports with prosody namespace
author Kim Alvefur <zash@zash.se>
date Fri, 17 Mar 2023 16:23:16 +0100
parent 12446:e54b8a5e35ad
comparison
equal deleted inserted replaced
12974:ba409c67353b 12975:d10957394a3c
4 -- 4 --
5 -- This project is MIT/X11 licensed. Please see the 5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information. 6 -- COPYING file in the source package for more information.
7 -- 7 --
8 8
9 local ok, crand = pcall(require, "util.crand"); 9 local ok, crand = pcall(require, "prosody.util.crand");
10 if ok and pcall(crand.bytes, 1) then return crand; end 10 if ok and pcall(crand.bytes, 1) then return crand; end
11 11
12 local urandom, urandom_err = io.open("/dev/urandom", "r"); 12 local urandom, urandom_err = io.open("/dev/urandom", "r");
13 13
14 local function bytes(n) 14 local function bytes(n)