mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 14:32:25 +00:00
40 lines
2.8 KiB
C++
40 lines
2.8 KiB
C++
#ifndef crypto_sign_edwards25519sha512batch_H
|
|
#define crypto_sign_edwards25519sha512batch_H
|
|
|
|
#define crypto_sign_edwards25519sha512batch_ref_SECRETKEYBYTES 64
|
|
#define crypto_sign_edwards25519sha512batch_ref_PUBLICKEYBYTES 32
|
|
#define crypto_sign_edwards25519sha512batch_ref_BYTES 64
|
|
#ifdef __cplusplus
|
|
#include <string>
|
|
extern std::string crypto_sign_edwards25519sha512batch_ref(const std::string &,const std::string &);
|
|
extern std::string crypto_sign_edwards25519sha512batch_ref_open(const std::string &,const std::string &);
|
|
extern std::string crypto_sign_edwards25519sha512batch_ref_keypair(std::string *);
|
|
extern "C" {
|
|
#endif
|
|
extern int crypto_sign_edwards25519sha512batch_ref(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
|
|
extern int crypto_sign_edwards25519sha512batch_ref_open(unsigned char *,unsigned long long *,const unsigned char *,unsigned long long,const unsigned char *);
|
|
extern int crypto_sign_edwards25519sha512batch_ref_keypair(unsigned char *,unsigned char *);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#define crypto_sign_edwards25519sha512batch crypto_sign_edwards25519sha512batch_ref
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_open crypto_sign_edwards25519sha512batch_ref_open
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref_open crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_keypair crypto_sign_edwards25519sha512batch_ref_keypair
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref_keypair crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_BYTES crypto_sign_edwards25519sha512batch_ref_BYTES
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref_BYTES crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES crypto_sign_edwards25519sha512batch_ref_PUBLICKEYBYTES
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref_PUBLICKEYBYTES crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_SECRETKEYBYTES crypto_sign_edwards25519sha512batch_ref_SECRETKEYBYTES
|
|
/* POTATO crypto_sign_edwards25519sha512batch_ref_SECRETKEYBYTES crypto_sign_edwards25519sha512batch_ref crypto_sign_edwards25519sha512batch */
|
|
#define crypto_sign_edwards25519sha512batch_IMPLEMENTATION "crypto_sign/edwards25519sha512batch/ref"
|
|
#ifndef crypto_sign_edwards25519sha512batch_ref_VERSION
|
|
#define crypto_sign_edwards25519sha512batch_ref_VERSION "-"
|
|
#endif
|
|
#define crypto_sign_edwards25519sha512batch_VERSION crypto_sign_edwards25519sha512batch_ref_VERSION
|
|
|
|
#endif
|