aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/zinc/curve25519/curve25519.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-10-07 15:35:51 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-07 16:35:54 +0200
commit4b34b6af713f027a2f7f98478742418bf4755f6e (patch)
tree7fce70eec822d2372658158a06726d5ba0605495 /src/crypto/zinc/curve25519/curve25519.c
parentallowedips: document additional nobs (diff)
downloadwireguard-monolithic-historical-4b34b6af713f027a2f7f98478742418bf4755f6e.tar.xz
wireguard-monolithic-historical-4b34b6af713f027a2f7f98478742418bf4755f6e.zip
crypto: clean up remaining .h->.c
Diffstat (limited to 'src/crypto/zinc/curve25519/curve25519.c')
-rw-r--r--src/crypto/zinc/curve25519/curve25519.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/zinc/curve25519/curve25519.c b/src/crypto/zinc/curve25519/curve25519.c
index 64efa60..e3c1f7d 100644
--- a/src/crypto/zinc/curve25519/curve25519.c
+++ b/src/crypto/zinc/curve25519/curve25519.c
@@ -50,9 +50,9 @@ static __always_inline void normalize_secret(u8 secret[CURVE25519_KEY_SIZE])
}
#if defined(CONFIG_ARCH_SUPPORTS_INT128) && defined(__SIZEOF_INT128__)
-#include "curve25519-hacl64.h"
+#include "curve25519-hacl64.c"
#else
-#include "curve25519-fiat32.h"
+#include "curve25519-fiat32.c"
#endif
static const u8 null_point[CURVE25519_KEY_SIZE] = { 0 };