Remove unused declarations.
[tinc] / src / ed25519 / ed25519.h
1 #ifndef ED25519_H
2 #define ED25519_H
3
4 #include <stddef.h>
5
6 #if defined(_WIN32)
7 #if defined(ED25519_BUILD_DLL)
8 #define ED25519_DECLSPEC __declspec(dllexport)
9 #elif defined(ED25519_DLL)
10 #define ED25519_DECLSPEC __declspec(dllimport)
11 #else
12 #define ED25519_DECLSPEC
13 #endif
14 #else
15 #define ED25519_DECLSPEC
16 #endif
17
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 void ED25519_DECLSPEC ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed);
24 void ED25519_DECLSPEC ed25519_sign(unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *public_key, const unsigned char *private_key);
25 int ED25519_DECLSPEC ed25519_verify(const unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *private_key);
26 void ED25519_DECLSPEC ed25519_key_exchange(unsigned char *shared_secret, const unsigned char *public_key, const unsigned char *private_key);
27
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif