This commit is contained in:
Conor Patrick
2018-10-21 12:01:36 -04:00
parent 2108f0f286
commit fac29a5f7b
8 changed files with 725 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
#ifndef _RNG_H_
#define _RNG_H_
#include <stdint.h>
void rng_get_bytes(uint8_t * dst, size_t sz);
float shannon_entropy(float * p, size_t sz);
float rng_test(size_t n);
#endif