aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples
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
commit93fa0d934b96179847301d3a59d3ca8f71b85f58 (patch)
tree41a0ee271fe2ef752b9ecccb54d8d458c1ed212b /contrib/examples
parentcurve25519: replace hacl64 with fiat64 (diff)
downloadwireguard-monolithic-historical-93fa0d934b96179847301d3a59d3ca8f71b85f58.tar.xz
wireguard-monolithic-historical-93fa0d934b96179847301d3a59d3ca8f71b85f58.zip
curve25519: replace fiat64 with faster hacl64
This reverts commit da4ff396cc5d5e0ff21f9ecbc2f951c048c63fff and adds some optimizations to hacl64.
Diffstat (limited to 'contrib/examples')
-rw-r--r--contrib/examples/keygen-html/src/curve25519_generate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/examples/keygen-html/src/curve25519_generate.c b/contrib/examples/keygen-html/src/curve25519_generate.c
index e7873a6..8b4bbb3 100644
--- a/contrib/examples/keygen-html/src/curve25519_generate.c
+++ b/contrib/examples/keygen-html/src/curve25519_generate.c
@@ -48,7 +48,7 @@ static __always_inline void normalize_secret(u8 secret[CURVE25519_POINT_SIZE])
secret[31] |= 64;
}
-#include "../../../../src/crypto/curve25519-generic.h"
+#include "../../../../src/crypto/curve25519-fiat32.h"
EMSCRIPTEN_KEEPALIVE void curve25519_generate_public(u8 public[static 32], const u8 private[static 32])
{