summaryrefslogtreecommitdiffstats
path: root/src/libcryptobox/curve25519/curve25519.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcryptobox/curve25519/curve25519.h')
-rw-r--r--src/libcryptobox/curve25519/curve25519.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libcryptobox/curve25519/curve25519.h b/src/libcryptobox/curve25519/curve25519.h
new file mode 100644
index 000000000..2d87e34cb
--- /dev/null
+++ b/src/libcryptobox/curve25519/curve25519.h
@@ -0,0 +1,10 @@
+#ifndef CURVE25519_H
+#define CURVE25519_H
+
+#include "config.h"
+
+static const guchar curve25519_basepoint[32] = {9};
+
+int curve25519 (guchar *mypublic, const guchar *secret, const guchar *basepoint);
+
+#endif