diff options
Diffstat (limited to 'src/crypto/curve25519.c')
-rw-r--r-- | src/crypto/curve25519.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/crypto/curve25519.c b/src/crypto/curve25519.c index eba94cd..38020be 100644 --- a/src/crypto/curve25519.c +++ b/src/crypto/curve25519.c @@ -25,11 +25,7 @@ static __always_inline void normalize_secret(u8 secret[CURVE25519_POINT_SIZE]) void __init curve25519_fpu_init(void) { } #endif -#if defined(CONFIG_ARCH_SUPPORTS_INT128) && defined(__SIZEOF_INT128__) -#include "curve25519-hacl64.h" -#else -#include "curve25519-fiat32.h" -#endif +#include "curve25519-generic.h" static const u8 null_point[CURVE25519_POINT_SIZE] = { 0 }; |