mirror of
https://github.com/morgan9e/UxPlay
synced 2026-04-14 16:24:29 +09:00
9 lines
233 B
C
9 lines
233 B
C
|
|
#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
|