diff options
Diffstat (limited to 'src/ext/ed25519/donna/fuzz/ed25519-ref10.h')
-rw-r--r-- | src/ext/ed25519/donna/fuzz/ed25519-ref10.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ext/ed25519/donna/fuzz/ed25519-ref10.h b/src/ext/ed25519/donna/fuzz/ed25519-ref10.h new file mode 100644 index 0000000000..c8a0f69b65 --- /dev/null +++ b/src/ext/ed25519/donna/fuzz/ed25519-ref10.h @@ -0,0 +1,9 @@ +#ifndef ED25519_REF10_H +#define ED25519_REF10_H + +int crypto_sign_pk_ref10(unsigned char *pk,unsigned char *sk); +int crypto_sign_ref10(unsigned char *sm,unsigned long long *smlen,const unsigned char *m,unsigned long long mlen,const unsigned char *sk); +int crypto_sign_open_ref10(unsigned char *m,unsigned long long *mlen,const unsigned char *sm,unsigned long long smlen,const unsigned char *pk); + +#endif /* ED25519_REF10_H */ + |