libtommath/mp_montgomery_calc_normalization.c

44 lines
1.1 KiB
C
Raw Normal View History

#include "tommath_private.h"
#ifdef MP_MONTGOMERY_CALC_NORMALIZATION_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-02-28 16:09:08 +00:00
2004-10-29 22:07:18 +00:00
/*
2003-02-28 16:09:08 +00:00
* shifts with subtractions when the result is greater than b.
*
* The method is slightly modified to shift B unconditionally upto just under
* the leading bit of b. This saves alot of multiple precision shifting.
*/
mp_err mp_montgomery_calc_normalization(mp_int *a, const mp_int *b)
2003-02-28 16:09:08 +00:00
{
int x, bits;
2019-05-19 15:16:13 +00:00
mp_err err;
2003-02-28 16:09:08 +00:00
2017-08-30 18:23:46 +00:00
/* how many bits of last digit does b use */
2019-04-13 06:46:57 +00:00
bits = mp_count_bits(b) % MP_DIGIT_BIT;
2003-02-28 16:09:08 +00:00
2017-08-30 18:23:46 +00:00
if (b->used > 1) {
2019-05-19 15:16:13 +00:00
if ((err = mp_2expt(a, ((b->used - 1) * MP_DIGIT_BIT) + bits - 1)) != MP_OKAY) {
return err;
2017-08-30 18:23:46 +00:00
}
} else {
2017-10-15 14:11:09 +00:00
mp_set(a, 1uL);
2017-08-30 18:23:46 +00:00
bits = 1;
}
2003-02-28 16:09:08 +00:00
2017-08-30 18:23:46 +00:00
/* now compute C = A * B mod b */
2019-04-13 06:46:57 +00:00
for (x = bits - 1; x < (int)MP_DIGIT_BIT; x++) {
2019-05-19 15:16:13 +00:00
if ((err = mp_mul_2(a, a)) != MP_OKAY) {
return err;
2017-08-30 18:23:46 +00:00
}
if (mp_cmp_mag(a, b) != MP_LT) {
2019-05-19 15:16:13 +00:00
if ((err = s_mp_sub(a, b, a)) != MP_OKAY) {
return err;
2017-08-30 18:23:46 +00:00
}
2003-02-28 16:09:08 +00:00
}
2017-08-30 18:23:46 +00:00
}
2003-02-28 16:09:08 +00:00
2017-08-30 18:23:46 +00:00
return MP_OKAY;
2003-02-28 16:09:08 +00:00
}
2004-10-29 22:07:18 +00:00
#endif