2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_REDUCE_2K_SETUP_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
|
|
|
|
|
|
|
/* determines the setup value */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_reduce_2k_setup_l(const mp_int *a, mp_int *d)
|
2005-02-12 08:40:15 +00:00
|
|
|
{
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2005-02-12 08:40:15 +00:00
|
|
|
mp_int tmp;
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_init(&tmp)) != MP_OKAY) {
|
|
|
|
return err;
|
2005-02-12 08:40:15 +00:00
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) {
|
2018-04-11 20:46:35 +00:00
|
|
|
goto LBL_ERR;
|
2005-02-12 08:40:15 +00:00
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = s_mp_sub(&tmp, a, d)) != MP_OKAY) {
|
2018-04-11 20:46:35 +00:00
|
|
|
goto LBL_ERR;
|
2005-02-12 08:40:15 +00:00
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2018-04-11 20:46:35 +00:00
|
|
|
LBL_ERR:
|
2005-02-12 08:40:15 +00:00
|
|
|
mp_clear(&tmp);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2005-02-12 08:40:15 +00:00
|
|
|
}
|
|
|
|
#endif
|