mkp224o/ed25519/ref10/randombytes.h

9 lines
166 B
C
Raw Permalink Normal View History

2017-09-24 16:13:16 -03: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