aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/curve25519-arm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/curve25519-arm.h')
-rw-r--r--src/crypto/curve25519-arm.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/crypto/curve25519-arm.h b/src/crypto/curve25519-arm.h
deleted file mode 100644
index 4271ab5..0000000
--- a/src/crypto/curve25519-arm.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0
- *
- * Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
- */
-
-#include <asm/hwcap.h>
-#include <asm/neon.h>
-#include <asm/simd.h>
-asmlinkage void curve25519_neon(u8 mypublic[CURVE25519_POINT_SIZE], const u8 secret[CURVE25519_POINT_SIZE], const u8 basepoint[CURVE25519_POINT_SIZE]);
-static bool curve25519_use_neon __ro_after_init;
-void __init curve25519_fpu_init(void)
-{
- curve25519_use_neon = elf_hwcap & HWCAP_NEON;
-}