From: Niels Möller Date: Thu, 31 Jul 2014 07:53:47 +0000 (+0200) Subject: Fixed declarations for ecc_mul_a_eh. X-Git-Tag: nettle_3.1rc1~155^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fa54ac583030a6a68b0c5bd12d1cdfddd0ee45c;p=thirdparty%2Fnettle.git Fixed declarations for ecc_mul_a_eh. --- diff --git a/ecc.h b/ecc.h index f37b8f34..e2efbeb0 100644 --- a/ecc.h +++ b/ecc.h @@ -83,8 +83,8 @@ extern "C" { #define ecc_mul_a nettle_ecc_mul_a #define ecc_mul_g_eh_itch nettle_ecc_mul_g_eh_itch #define ecc_mul_g_eh nettle_ecc_mul_g_eh -#define ecc_mul_eh_itch nettle_ecc_mul_eh_itch -#define ecc_mul_eh nettle_ecc_mul_eh +#define ecc_mul_a_eh_itch nettle_ecc_mul_a_eh_itch +#define ecc_mul_a_eh nettle_ecc_mul_a_eh struct ecc_curve; @@ -304,12 +304,12 @@ ecc_mul_g_eh (const struct ecc_curve *ecc, mp_limb_t *r, const mp_limb_t *np, mp_limb_t *scratch); mp_size_t -ecc_mul_eh_itch (const struct ecc_curve *ecc); +ecc_mul_a_eh_itch (const struct ecc_curve *ecc); void -ecc_mul_eh (const struct ecc_curve *ecc, - mp_limb_t *r, - const mp_limb_t *np, const mp_limb_t *p, - mp_limb_t *scratch); +ecc_mul_a_eh (const struct ecc_curve *ecc, + mp_limb_t *r, + const mp_limb_t *np, const mp_limb_t *p, + mp_limb_t *scratch); #ifdef __cplusplus