1 2 3 4 5 6 7 8
#include <stdint.h> void prng_init(void); int prng_get(uint8_t *out, size_t size); void prng_seed(const uint8_t *seed, size_t size);