mkp224o/ed25519/ed25519-donna/ed25519-randombytes-custom.h
2017-10-06 00:16:48 +00:00

15 lines
335 B
C

/*
a custom randombytes must implement:
void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len);
ed25519_randombytes_unsafe is used by the batch verification function
to create random scalars
*/
#include <sodium/randombytes.h>
void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len)
{
randombytes(p,len);
}