summaryrefslogtreecommitdiff
path: root/numpy/random/src/entropy/entropy.h
blob: f00caf61d9d137d56ae1f6860114dbb46e6c30b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _RANDOMDGEN__ENTROPY_H_
#define _RANDOMDGEN__ENTROPY_H_

#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>

extern void entropy_fill(void *dest, size_t size);

extern bool entropy_getbytes(void *dest, size_t size);

extern bool entropy_fallback_getbytes(void *dest, size_t size);

#endif