summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2019-01-19 16:16:37 +0100
committerNiels Möller <nisse@lysator.liu.se>2019-01-19 16:16:37 +0100
commit45aab4d103f5b1cf31c606a0fe251bd25cd35c92 (patch)
tree292801177d78cf037110dee672da5a664afefab3
parentff68c47c0c47d84f1b5ca6886edb7659af6ebd95 (diff)
downloadnettle-45aab4d103f5b1cf31c606a0fe251bd25cd35c92.tar.gz
fat-arm.c: Fix declarations of chacha_core functions.
-rw-r--r--ChangeLog2
-rw-r--r--fat-arm.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ee7a57f7..479b9f05 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2019-01-19 Niels Möller <nisse@lysator.liu.se>
+ * fat-arm.c: Fix declarations of chacha_core functions.
+
From Yuriy M. Kaminskiy:
* fat-setup.h (chacha_core_func): New typedef.
* fat-arm.c (fat_init): Enable choice between
diff --git a/fat-arm.c b/fat-arm.c
index 56099e6f..48feb5d4 100644
--- a/fat-arm.c
+++ b/fat-arm.c
@@ -172,8 +172,8 @@ DECLARE_FAT_FUNC_VAR(umac_nh_n, umac_nh_n_func, c);
DECLARE_FAT_FUNC_VAR(umac_nh_n, umac_nh_n_func, neon);
DECLARE_FAT_FUNC(_nettle_chacha_core, chacha_core_func)
-DECLARE_FAT_FUNC_VAR(_chacha_core, chacha_core_func, c);
-DECLARE_FAT_FUNC_VAR(_chacha_core, chacha_core_func, neon);
+DECLARE_FAT_FUNC_VAR(chacha_core, chacha_core_func, c);
+DECLARE_FAT_FUNC_VAR(chacha_core, chacha_core_func, neon);
static void CONSTRUCTOR
fat_init (void)