diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-22 09:32:33 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-22 09:32:33 +0100 |
commit | 3a33321db7be83ef5aab718a8271c4bd81569e50 (patch) | |
tree | 1d69ddaf911687b7b939388e500c58db7b1689a8 | |
parent | 600814a0f6a8ae9f0fbf10d00afe325dd06b86f6 (diff) | |
download | prosody-3a33321db7be83ef5aab718a8271c4bd81569e50.tar.gz prosody-3a33321db7be83ef5aab718a8271c4bd81569e50.zip |
util.crand: Add comment describing purpose of module
-rw-r--r-- | util-src/crand.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util-src/crand.c b/util-src/crand.c index da79f3c7..aa3379c2 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -11,6 +11,12 @@ /* * crand.c * C PRNG interface +* +* The purpose of this module is to provide access to a PRNG in +* environments without /dev/urandom +* +* Caution! This has not been extensively tested. +* */ #include "lualib.h" |