2017-10-19 15:04:42 +01:00
|
|
|
#ifndef XMSS_RANDOMBYTES_H
|
|
|
|
#define XMSS_RANDOMBYTES_H
|
2015-08-11 11:08:27 +01:00
|
|
|
|
2017-10-23 13:10:39 +01:00
|
|
|
/**
|
|
|
|
* Tries to read xlen bytes from a source of randomness, and writes them to x.
|
|
|
|
*/
|
|
|
|
void randombytes(unsigned char *x, unsigned long long xlen);
|
2015-08-11 11:08:27 +01:00
|
|
|
|
|
|
|
#endif
|