mirror of
https://github.com/cathugger/mkp224o.git
synced 2026-01-26 11:12:09 -06:00
properly add files
This commit is contained in:
14
ed25519/ed25519-donna/ed25519-randombytes-custom.h
Normal file
14
ed25519/ed25519-donna/ed25519-randombytes-custom.h
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user