properly add files

This commit is contained in:
cathugger 2017-10-06 00:16:48 +00:00
parent 76325bdaa6
commit 3ea7ec8a8c
32 changed files with 8858 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
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);
}