Import 25519 functions, to be reorganized later

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld
2018-08-21 16:14:17 -07:00
parent e93e562f38
commit 9d9307ce03
2 changed files with 184 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#ifndef X25519_H
#define X25519_H
void curve25519_derive_public_key(unsigned char public_key[32], const unsigned char private_key[32]);
void curve25519_generate_private_key(unsigned char private_key[32]);
#endif