aboutsummaryrefslogtreecommitdiff
path: root/lib/curve25519-donna.h
blob: 3c53d4acf8e17e5cd213441fed863e5eb95d757f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* header file for the curve25519-donna implementation, because the
 * authors of that project don't supply one.
 */
#ifndef CURVE25519_DONNA_H
#define CURVE25519_DONNA_H

#ifdef __cplusplus
extern "C" {
#endif

extern int curve25519_donna(unsigned char *output, const unsigned char *a,
                            const unsigned char *b);

#ifdef __cplusplus
}
#endif

#endif