From: Niels Möller Date: Sat, 19 Jan 2019 15:16:37 +0000 (+0100) Subject: fat-arm.c: Fix declarations of chacha_core functions. X-Git-Tag: nettle_3.5rc1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45aab4d103f5b1cf31c606a0fe251bd25cd35c92;p=thirdparty%2Fnettle.git fat-arm.c: Fix declarations of chacha_core functions. --- diff --git a/ChangeLog b/ChangeLog index ee7a57f7..479b9f05 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2019-01-19 Niels Möller + * 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)