From: Niels Möller Date: Sat, 13 Mar 2021 15:45:34 +0000 (+0100) Subject: Fix canonical reduction in gostdsa_vko. X-Git-Tag: nettle_3.8_release_20220602~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b30e0ca6d2b41579a5b6a010fc54065d790e8d55;p=thirdparty%2Fnettle.git Fix canonical reduction in gostdsa_vko. * gostdsa-vko.c (gostdsa_vko): Use ecc_mod_mul_canonical to compute the scalar used for ecc multiplication. --- diff --git a/ChangeLog b/ChangeLog index 202dc275..468b98a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2021-03-13 Niels Möller + * gostdsa-vko.c (gostdsa_vko): Use ecc_mod_mul_canonical to + compute the scalar used for ecc multiplication. + * eddsa-hash.c (_eddsa_hash): Ensure result is canonically reduced. Two of the three call sites need that. diff --git a/gostdsa-vko.c b/gostdsa-vko.c index a02d59a9..3dc42a1e 100644 --- a/gostdsa-vko.c +++ b/gostdsa-vko.c @@ -87,7 +87,7 @@ gostdsa_vko (const struct ecc_scalar *priv, if (mpn_zero_p (UKM, size)) UKM[0] = 1; - ecc_mod_mul (&ecc->q, TEMP, priv->p, UKM, TEMP); /* TEMP = UKM * priv */ + ecc_mod_mul_canonical (&ecc->q, TEMP, priv->p, UKM, TEMP); /* TEMP = UKM * priv */ ecc->mul (ecc, XYZ, TEMP, pub->p, scratch + 4*size); /* XYZ = UKM * priv * pub */ ecc->h_to_a (ecc, 0, TEMP, XYZ, scratch + 5*size); /* TEMP = XYZ */ mpn_get_base256_le (out, bsize, TEMP, size);