aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/shen_ed25519_ref/crypto_sign.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/shen_ed25519_ref/crypto_sign.h')
-rwxr-xr-xsrc/crypto/shen_ed25519_ref/crypto_sign.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/crypto/shen_ed25519_ref/crypto_sign.h b/src/crypto/shen_ed25519_ref/crypto_sign.h
deleted file mode 100755
index afed20821..000000000
--- a/src/crypto/shen_ed25519_ref/crypto_sign.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef crypto_sign_edwards25519sha512batch_H
-#define crypto_sign_edwards25519sha512batch_H
-
-#define SECRETKEYBYTES 64
-#define PUBLICKEYBYTES 32
-#define SIGNATUREBYTES 64
-
-extern int crypto_sign(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
-extern int crypto_sign_open(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
-extern int crypto_sign_keypair(unsigned char *,unsigned char *);
-extern int crypto_sign_publickey(unsigned char *pk, unsigned char *sk, unsigned char *seed);
-
-#endif