2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2004-10-29 22:07:18 +00:00
|
|
|
#ifdef BN_MP_REDUCE_2K_SETUP_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
|
|
|
|
|
|
|
/* determines the setup value */
|
2017-09-20 14:59:43 +00:00
|
|
|
int mp_reduce_2k_setup(const mp_int *a, mp_digit *d)
|
2003-08-05 01:24:44 +00:00
|
|
|
{
|
|
|
|
int res, p;
|
|
|
|
mp_int tmp;
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2003-08-05 01:24:44 +00:00
|
|
|
if ((res = mp_init(&tmp)) != MP_OKAY) {
|
|
|
|
return res;
|
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2003-08-05 01:24:44 +00:00
|
|
|
p = mp_count_bits(a);
|
|
|
|
if ((res = mp_2expt(&tmp, p)) != MP_OKAY) {
|
|
|
|
mp_clear(&tmp);
|
|
|
|
return res;
|
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2003-08-05 01:24:44 +00:00
|
|
|
if ((res = s_mp_sub(&tmp, a, &tmp)) != MP_OKAY) {
|
|
|
|
mp_clear(&tmp);
|
|
|
|
return res;
|
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2003-08-05 01:24:44 +00:00
|
|
|
*d = tmp.dp[0];
|
|
|
|
mp_clear(&tmp);
|
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|