Comparison

util-src/crand.c @ 7830:b9910a507250

util.crand: Add comment describing purpose of module
author Kim Alvefur <zash@zash.se>
date Sun, 22 Jan 2017 09:32:33 +0100
parent 7829:1fb477d19fdd
child 7831:201d0df6cce9
comparison
equal deleted inserted replaced
7829:1fb477d19fdd 7830:b9910a507250
9 */ 9 */
10 10
11 /* 11 /*
12 * crand.c 12 * crand.c
13 * C PRNG interface 13 * C PRNG interface
14 *
15 * The purpose of this module is to provide access to a PRNG in
16 * environments without /dev/urandom
17 *
18 * Caution! This has not been extensively tested.
19 *
14 */ 20 */
15 21
16 #include "lualib.h" 22 #include "lualib.h"
17 #include "lauxlib.h" 23 #include "lauxlib.h"
18 24