mkp224o/ed25519/ref10/randombytes.h

9 lines
166 B
C
Raw Normal View History

2017-09-24 21:13:16 +02:00
#include <sodium/randombytes.h>
static inline int randombytes_wrap(unsigned char *b,size_t l)
{
randombytes(b,l);
return 0;
}
#define randombytes randombytes_wrap