summaryrefslogtreecommitdiffhomepage
path: root/src/crypto/curve25519.c
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
commitabfc2b66ac9da7422c8ed50bf434fe26293f405f (patch)
tree793c30923f4922eede69514069b5ae437b71cce6 /src/crypto/curve25519.c
parent3ce3783bd9a1e7a7a33ca11337c025740063cbeb (diff)
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/crypto/curve25519.c')
-rw-r--r--src/crypto/curve25519.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/crypto/curve25519.c b/src/crypto/curve25519.c
index 38020be..eba94cd 100644
--- a/src/crypto/curve25519.c
+++ b/src/crypto/curve25519.c
@@ -25,7 +25,11 @@ static __always_inline void normalize_secret(u8 secret[CURVE25519_POINT_SIZE])
void __init curve25519_fpu_init(void) { }
#endif
-#include "curve25519-generic.h"
+#if defined(CONFIG_ARCH_SUPPORTS_INT128) && defined(__SIZEOF_INT128__)
+#include "curve25519-hacl64.h"
+#else
+#include "curve25519-fiat32.h"
+#endif
static const u8 null_point[CURVE25519_POINT_SIZE] = { 0 };