2020-04-25 Niels Möller <nisse@lysator.liu.se>
+ * configure.ac: Update required version of GMP to 6.1.0, needed
+ for mpn_zero_p.
+ * ecc-ecdsa-verify.c (zero_p): Deleted static function, usage
+ replaced with mpn_zero_p.
+ * testsuite/testutils.c (mpn_zero_p): Delete conditional
+ definition.
+ * testsuite/testutils.h: Delete corresponding declarations.
+
* Makefile.in (DISTFILES): Add poly1305-internal.h.
* testsuite/Makefile.in (DISTFILES): Delete setup-env.
# Checks for libraries
if test "x$enable_public_key" = "xyes" ; then
if test "x$enable_mini_gmp" = "xno" ; then
- AC_CHECK_LIB(gmp, __gmpn_sec_div_r,,
+ # mpn_zero_p was added in GMP-6.1.0
+ AC_CHECK_LIB(gmp, __gmpn_zero_p,,
[AC_MSG_WARN(
- [GNU MP not found, or too old. GMP-6.0 or later is needed, see https://gmplib.org/.
+ [GNU MP not found, or too old. GMP-6.1.0 or later is needed, see https://gmplib.org/.
Support for public key algorithms will be unavailable.])]
enable_public_key=no)
/* Low-level ECDSA verify */
-/* FIXME: Use mpn_zero_p. */
-static int
-zero_p (const mp_limb_t *xp, mp_size_t n)
-{
- while (n > 0)
- if (xp[--n] > 0)
- return 0;
- return 1;
-}
-
static int
ecdsa_in_range (const struct ecc_curve *ecc, const mp_limb_t *xp)
{
- return !zero_p (xp, ecc->p.size)
+ return !mpn_zero_p (xp, ecc->p.size)
&& mpn_cmp (xp, ecc->q.m, ecc->p.size) < 0;
}
/* u = 0 can happen only if h = 0 or h = q, which is extremely
unlikely. */
- if (!zero_p (u1, ecc->p.size))
+ if (!mpn_zero_p (u1, ecc->p.size))
{
/* Total storage: 7*ecc->p.size + ecc->mul_g_itch (ecc->p.size) */
ecc->mul_g (ecc, P1, u1, P1 + 3*ecc->p.size);
#if WITH_HOGWEED
-#ifndef mpn_zero_p
-int
-mpn_zero_p (mp_srcptr ap, mp_size_t n)
-{
- while (--n >= 0)
- {
- if (ap[n] != 0)
- return 0;
- }
- return 1;
-}
-#endif
-
void
mpn_out_str (FILE *f, int base, const mp_limb_t *xp, mp_size_t xn)
{
/* This is cheating */
#define mpz_rrandomb mpz_urandomb
-/* mini-gmp defines this function (in the GMP library, it was added in
- gmp in version 6.1.0). */
-#define mpn_zero_p mpn_zero_p
-
#endif /* NETTLE_USE_MINI_GMP */
-#ifndef mpn_zero_p
-int
-mpn_zero_p (mp_srcptr ap, mp_size_t n);
-#endif
-
void
mpn_out_str (FILE *f, int base, const mp_limb_t *xp, mp_size_t xn);