Files
AirplayServer/lib/curve25519/curve25519.h
2020-04-19 14:49:21 +02:00

9 lines
233 B
C
Executable File

#ifndef CURVE25519_DONNA_H
#define CURVE25519_DONNA_H
static const unsigned char kCurve25519BasePoint[32] = { 9 };
int curve25519_donna(unsigned char *mypublic, const unsigned char *secret, const unsigned char *basepoint);
#endif