mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-10 11:37:19 -03:00
8 lines
166 B
C
8 lines
166 B
C
#include <sodium/randombytes.h>
|
|
|
|
static inline int randombytes_wrap(unsigned char *b,size_t l)
|
|
{
|
|
randombytes(b,l);
|
|
return 0;
|
|
}
|
|
#define randombytes randombytes_wrap
|