aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-02-01 19:15:28 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-02-01 19:51:50 +0100
commitbee5bbb6f363f97b5e6e855481dc1f6b414f734a (patch)
treeb22a289919c34920b47f8ec4d93052f4d80bffd2 /src
parentcurve25519: replace hacl64 with fiat64 (diff)
downloadwireguard-tools-bee5bbb6f363f97b5e6e855481dc1f6b414f734a.tar.xz
wireguard-tools-bee5bbb6f363f97b5e6e855481dc1f6b414f734a.zip
curve25519: replace fiat64 with faster hacl64
This reverts commit da4ff396cc5d5e0ff21f9ecbc2f951c048c63fff and adds some optimizations to hacl64. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src')
-rw-r--r--src/curve25519.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/curve25519.c b/src/curve25519.c
index 50b95a9..901becd 100644
--- a/src/curve25519.c
+++ b/src/curve25519.c
@@ -39,11 +39,11 @@ static noinline void memzero_explicit(void *s, size_t count)
}
#ifdef __SIZEOF_INT128__
-#define CONFIG_ARCH_SUPPORTS_INT128
+#include "../crypto/curve25519-hacl64.h"
+#else
+#include "../crypto/curve25519-fiat32.h"
#endif
-#include "../crypto/curve25519-generic.h"
-
void curve25519_generate_public(uint8_t pub[static CURVE25519_POINT_SIZE], const uint8_t secret[static CURVE25519_POINT_SIZE])
{
static const uint8_t basepoint[CURVE25519_POINT_SIZE] = { 9 };