mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Document crypto_fast_rng_one_in_n.
This commit is contained in:
parent
b3416476b4
commit
64f594499a
@ -68,6 +68,12 @@ unsigned crypto_fast_rng_get_uint(crypto_fast_rng_t *rng, unsigned limit);
|
||||
uint64_t crypto_fast_rng_get_uint64(crypto_fast_rng_t *rng, uint64_t limit);
|
||||
double crypto_fast_rng_get_double(crypto_fast_rng_t *rng);
|
||||
|
||||
/**
|
||||
* Using the fast_rng <b>rng</b>, yield true with probability
|
||||
* 1/<b>n</b>. Otherwise yield false.
|
||||
*
|
||||
* <b>n</b> must not be zero.
|
||||
**/
|
||||
#define crypto_fast_rng_one_in_n(rng, n) \
|
||||
(0 == (crypto_fast_rng_get_uint((rng), (n))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user