first commit

This commit is contained in:
Your Name
2020-04-15 16:24:10 +03:00
parent dc317ffc93
commit 1946373e26
110 changed files with 25480 additions and 0 deletions

8
lib/curve25519/curve25519.h Executable file
View File

@@ -0,0 +1,8 @@
#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