libsodium: Needed for Dnscrypto-proxy Release 1.3.0
[tomato.git] / release / src / router / libsodium / src / libsodium / include / sodium / crypto_sign_edwards25519sha512batch.h
blobeb8f7061813aaabf7fc3fcf7718507399bd6ebc6
1 #ifndef crypto_sign_edwards25519sha512batch_H
2 #define crypto_sign_edwards25519sha512batch_H
4 #include <stddef.h>
5 #include "export.h"
7 #define crypto_sign_edwards25519sha512batch_SECRETKEYBYTES 64U
8 #define crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES 32U
9 #define crypto_sign_edwards25519sha512batch_BYTES 64U
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 SODIUM_EXPORT
16 size_t crypto_sign_edwards25519sha512batch_bytes(void);
18 SODIUM_EXPORT
19 size_t crypto_sign_edwards25519sha512batch_publickeybytes(void);
21 SODIUM_EXPORT
22 size_t crypto_sign_edwards25519sha512batch_secretkeybytes(void);
24 SODIUM_EXPORT
25 const char * crypto_sign_edwards25519sha512batch_primitive(void);
27 SODIUM_EXPORT
28 int crypto_sign_edwards25519sha512batch(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
30 SODIUM_EXPORT
31 int crypto_sign_edwards25519sha512batch_open(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
33 SODIUM_EXPORT
34 int crypto_sign_edwards25519sha512batch_keypair(unsigned char *,unsigned char *);
36 #ifdef __cplusplus
38 #endif
40 #define crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch
41 #define crypto_sign_edwards25519sha512batch_ref_open crypto_sign_edwards25519sha512batch_open
42 #define crypto_sign_edwards25519sha512batch_ref_keypair crypto_sign_edwards25519sha512batch_keypair
44 #endif