2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_REDUCE_2K_C
|
2019-04-07 13:29:11 +00:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
2003-08-05 01:24:44 +00:00
|
|
|
|
2004-04-11 20:46:22 +00:00
|
|
|
/* reduces a modulo n where n is of the form 2**p - d */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_reduce_2k(mp_int *a, const mp_int *n, mp_digit d)
|
2003-08-05 01:24:44 +00:00
|
|
|
{
|
|
|
|
mp_int q;
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2019-10-29 19:08:42 +00:00
|
|
|
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;
|
2003-08-05 01:24:44 +00:00
|
|
|
}
|
2015-11-12 00:18:15 +00:00
|
|
|
|
|
|
|
p = mp_count_bits(n);
|
2019-10-29 19:08:42 +00:00
|
|
|
for (;;) {
|
|
|
|
/* q = a/2**p, a = a mod 2**p */
|
|
|
|
if ((err = mp_div_2d(a, p, &q, a)) != MP_OKAY) {
|
2018-04-11 20:46:35 +00:00
|
|
|
goto LBL_ERR;
|
2003-08-05 01:24:44 +00:00
|
|
|
}
|
2015-11-12 00:18:15 +00:00
|
|
|
|
2019-10-29 19:08:42 +00:00
|
|
|
if (d != 1u) {
|
|
|
|
/* q = q * d */
|
|
|
|
if ((err = mp_mul_d(&q, d, &q)) != MP_OKAY) {
|
|
|
|
goto LBL_ERR;
|
|
|
|
}
|
|
|
|
}
|
2015-11-12 00:18:15 +00:00
|
|
|
|
2019-10-29 19:08:42 +00:00
|
|
|
/* a = a + q */
|
|
|
|
if ((err = s_mp_add(a, &q, a)) != MP_OKAY) {
|
|
|
|
goto LBL_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mp_cmp_mag(a, n) == MP_LT) {
|
|
|
|
break;
|
|
|
|
}
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = s_mp_sub(a, n, a)) != MP_OKAY) {
|
2018-04-11 20:46:35 +00:00
|
|
|
goto LBL_ERR;
|
2015-11-12 00:18:00 +00:00
|
|
|
}
|
2003-08-05 01:24:44 +00:00
|
|
|
}
|
2015-11-12 00:18:15 +00:00
|
|
|
|
2018-04-11 20:46:35 +00:00
|
|
|
LBL_ERR:
|
2003-08-05 01:24:44 +00:00
|
|
|
mp_clear(&q);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2003-08-05 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|