Reformat all code using astyle.
[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 #ifndef ED25519_NO_SEED
24 int ED25519_DECLSPEC ed25519_create_seed(unsigned char *seed);
25 #endif
26
27 void ED25519_DECLSPEC ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed);
28 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);
29 int ED25519_DECLSPEC ed25519_verify(const unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *private_key);
30 void ED25519_DECLSPEC ed25519_key_exchange(unsigned char *shared_secret, const unsigned char *public_key, const unsigned char *private_key);
31
32
33 #ifdef __cplusplus
34 }
35 #endif
36
37 #endif