libtommath/bn_mp_reduce_2k_l.c

50 lines
998 B
C
Raw Normal View History

#include "tommath_private.h"
2005-02-12 08:40:15 +00:00
#ifdef BN_MP_REDUCE_2K_L_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2005-02-12 08:40:15 +00:00
2015-11-12 00:18:15 +00:00
/* reduces a modulo n where n is of the form 2**p - d
2005-02-12 08:40:15 +00:00
This differs from reduce_2k since "d" can be larger
than a single digit.
*/
mp_err mp_reduce_2k_l(mp_int *a, const mp_int *n, const mp_int *d)
2005-02-12 08:40:15 +00:00
{
mp_int q;
2019-05-19 15:16:13 +00:00
mp_err err;
int p;
2015-11-12 00:18:15 +00:00
2019-05-19 15:16:13 +00:00
if ((err = mp_init(&q)) != MP_OKAY) {
return err;
2005-02-12 08:40:15 +00:00
}
2015-11-12 00:18:15 +00:00
p = mp_count_bits(n);
2005-02-12 08:40:15 +00:00
top:
/* q = a/2**p, a = a mod 2**p */
2019-05-19 15:16:13 +00:00
if ((err = mp_div_2d(a, p, &q, a)) != MP_OKAY) {
goto LBL_ERR;
2005-02-12 08:40:15 +00:00
}
2015-11-12 00:18:15 +00:00
2005-02-12 08:40:15 +00:00
/* q = q * d */
2019-05-19 15:16:13 +00:00
if ((err = mp_mul(&q, d, &q)) != MP_OKAY) {
goto LBL_ERR;
2005-02-12 08:40:15 +00:00
}
2015-11-12 00:18:15 +00:00
2005-02-12 08:40:15 +00:00
/* a = a + q */
2019-05-19 15:16:13 +00:00
if ((err = s_mp_add(a, &q, a)) != MP_OKAY) {
goto LBL_ERR;
2005-02-12 08:40:15 +00:00
}
2015-11-12 00:18:15 +00:00
2005-02-12 08:40:15 +00:00
if (mp_cmp_mag(a, n) != MP_LT) {
2019-05-19 15:16:13 +00:00
if ((err = s_mp_sub(a, n, a)) != MP_OKAY) {
goto LBL_ERR;
}
2005-02-12 08:40:15 +00:00
goto top;
}
2015-11-12 00:18:15 +00:00
LBL_ERR:
2005-02-12 08:40:15 +00:00
mp_clear(&q);
2019-05-19 15:16:13 +00:00
return err;
2005-02-12 08:40:15 +00:00
}
#endif