aboutsummaryrefslogtreecommitdiffstats
path: root/src/curve25519.h
blob: 51edd1e94617165964426b0cecb95d5fe40773a1 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CURVE25519_H
#define CURVE25519_H

typedef unsigned char curve25519_key[32];

void curve25519_donna(curve25519_key mypublic, const curve25519_key secret, const curve25519_key basepoint);
void curve25519_donna_basepoint(curve25519_key mypublic, const curve25519_key secret);

#endif /* CURVE25519_H */