diff options
Diffstat (limited to 'random')
-rw-r--r-- | random/random.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/random/random.c b/random/random.c index 6c9d29c..9458350 100644 --- a/random/random.c +++ b/random/random.c @@ -46,7 +46,7 @@ static NiceRNG * (*nice_rng_new_func) (void) = NULL; -/** +/* * Creates a new random number generator instance. */ NiceRNG * @@ -58,7 +58,7 @@ nice_rng_new (void) return nice_rng_new_func (); } -/** +/* * Sets a new generator function. */ void @@ -67,7 +67,7 @@ nice_rng_set_new_func (NiceRNG * (*func) (void)) nice_rng_new_func = func; } -/** +/* * Frees the random number generator instance. * * @param rng context @@ -78,7 +78,7 @@ nice_rng_free (NiceRNG *rng) rng->free (rng); } -/** +/* * Generates random octets. * * @param rng context @@ -91,7 +91,7 @@ nice_rng_generate_bytes (NiceRNG *rng, guint len, gchar *buf) rng->generate_bytes (rng, len, buf); } -/** +/* * Generates a random unsigned integer. * * @param rng context @@ -104,7 +104,7 @@ nice_rng_generate_int (NiceRNG *rng, guint low, guint high) return rng->generate_int (rng, low, high); } -/** +/* * Generates a stream of octets containing only characters * with ASCII codecs of 0x41-5A (A-Z), 0x61-7A (a-z), * 0x30-39 (0-9), 0x2b (+) and 0x2f (/). This matches |