csidh/rng.h
2018-08-23 13:49:45 +02:00

9 lines
95 B
C

#ifndef RNG_H
#define RNG_H
#include <stdlib.h>
void randombytes(void *x, size_t l);
#endif