2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2014-02-13 19:21:18 +00:00
|
|
|
#ifdef BN_MP_EXPT_D_EX_C
|
2019-04-07 13:29:11 +00:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
2014-02-13 19:21:18 +00:00
|
|
|
|
|
|
|
/* calculate c = a**b using a square-multiply algorithm */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast)
|
2014-02-13 19:21:18 +00:00
|
|
|
{
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2017-08-30 18:23:46 +00:00
|
|
|
unsigned int x;
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_int g;
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_init_copy(&g, a)) != MP_OKAY) {
|
|
|
|
return err;
|
2017-08-30 18:23:46 +00:00
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
/* set initial result */
|
2017-10-15 14:11:09 +00:00
|
|
|
mp_set(c, 1uL);
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
if (fast != 0) {
|
2017-10-15 17:57:12 +00:00
|
|
|
while (b > 0u) {
|
2017-08-30 18:23:46 +00:00
|
|
|
/* if the bit is set multiply */
|
2017-10-15 17:57:12 +00:00
|
|
|
if ((b & 1u) != 0u) {
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_mul(c, &g, c)) != MP_OKAY) {
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_clear(&g);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-30 18:23:46 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
/* square */
|
2017-10-15 17:57:12 +00:00
|
|
|
if (b > 1u) {
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_sqr(&g, &g)) != MP_OKAY) {
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_clear(&g);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-30 18:23:46 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
/* shift to next bit */
|
|
|
|
b >>= 1;
|
2014-02-13 19:21:18 +00:00
|
|
|
}
|
2017-08-30 18:23:46 +00:00
|
|
|
} else {
|
2019-04-13 06:46:57 +00:00
|
|
|
for (x = 0; x < (unsigned)MP_DIGIT_BIT; x++) {
|
2017-08-30 18:23:46 +00:00
|
|
|
/* square */
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_sqr(c, c)) != MP_OKAY) {
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_clear(&g);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-30 18:23:46 +00:00
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
/* if the bit is set multiply */
|
2019-04-13 06:46:57 +00:00
|
|
|
if ((b & ((mp_digit)1 << (MP_DIGIT_BIT - 1))) != 0u) {
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_mul(c, &g, c)) != MP_OKAY) {
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_clear(&g);
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-30 18:23:46 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
/* shift to next bit */
|
|
|
|
b <<= 1;
|
|
|
|
}
|
|
|
|
} /* if ... else */
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2017-08-30 18:23:46 +00:00
|
|
|
mp_clear(&g);
|
|
|
|
return MP_OKAY;
|
2014-02-13 19:21:18 +00:00
|
|
|
}
|
|
|
|
#endif
|