arc4random_buf
(3)cryptographically-secure pseudorandom number generator
#include <stdlib.h> uint32_t arc4random(void); uint32_t arc4random_uniform(uint32_t upper_bound); void arc4random_buf(void buf[.n], size_t n);
LIBRARY
DESCRIPTION
These functions give cryptographically-secure pseudorandom numbers.
arc4random() returns a uniformly-distributed value.
arc4random_uniform() returns a uniformly-distributed value less than upper_bound (see BUGS).
arc4random_buf() fills the memory pointed to by buf, with n bytes of pseudorandom data.
The rand(3) and drand48(3) families of functions should only be used where the quality of the pseudorandom numbers is not a concern and there's a need for repeatability of the results. Unless you meet both of those conditions, use the arc4random() functions.