| 1 | /* header file for the curve25519-donna implementation, because the |
|---|---|
| 2 | * authors of that project don't supply one. |
| 3 | */ |
| 4 | #ifndef CURVE25519_DONNA_H |
| 5 | #define CURVE25519_DONNA_H |
| 6 | |
| 7 | #ifdef __cplusplus |
| 8 | extern "C"{ |
| 9 | #endif |
| 10 | |
| 11 | extern int curve25519_donna(unsigned char *output, const unsigned char *a, |
| 12 | const unsigned char *b); |
| 13 | |
| 14 | #ifdef __cplusplus |
| 15 | } |
| 16 | #endif |
| 17 | |
| 18 | #endif |
| 19 |