From 4b34b6af713f027a2f7f98478742418bf4755f6e Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 7 Oct 2018 15:35:51 +0200 Subject: crypto: clean up remaining .h->.c --- src/crypto/zinc/curve25519/curve25519.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/crypto/zinc/curve25519/curve25519.c') 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 }; -- cgit v1.2.3-59-g8ed1b