2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-29 19:52:29 +00:00
|
|
|
#ifdef MP_EXPT_N_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:08:34 +00:00
|
|
|
|
2019-05-25 04:42:01 +00:00
|
|
|
/* calculate c = a**b using a square-multiply algorithm */
|
2019-10-29 19:52:29 +00:00
|
|
|
mp_err mp_expt_n(const mp_int *a, int b, mp_int *c)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2019-05-25 04:42:01 +00:00
|
|
|
mp_err err;
|
|
|
|
mp_int g;
|
|
|
|
|
|
|
|
if ((err = mp_init_copy(&g, a)) != MP_OKAY) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set initial result */
|
|
|
|
mp_set(c, 1uL);
|
|
|
|
|
2019-10-29 19:52:29 +00:00
|
|
|
while (b > 0) {
|
2019-05-25 04:42:01 +00:00
|
|
|
/* if the bit is set multiply */
|
2019-10-29 19:52:29 +00:00
|
|
|
if ((b & 1) != 0) {
|
2019-05-25 04:42:01 +00:00
|
|
|
if ((err = mp_mul(c, &g, c)) != MP_OKAY) {
|
2019-05-29 10:23:08 +00:00
|
|
|
goto LBL_ERR;
|
2019-05-25 04:42:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* square */
|
2019-10-29 19:52:29 +00:00
|
|
|
if (b > 1) {
|
2019-05-25 04:42:01 +00:00
|
|
|
if ((err = mp_sqr(&g, &g)) != MP_OKAY) {
|
2019-05-29 10:23:08 +00:00
|
|
|
goto LBL_ERR;
|
2019-05-25 04:42:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* shift to next bit */
|
|
|
|
b >>= 1;
|
|
|
|
}
|
|
|
|
|
2019-05-29 10:23:08 +00:00
|
|
|
LBL_ERR:
|
2019-05-25 04:42:01 +00:00
|
|
|
mp_clear(&g);
|
2019-05-29 10:23:08 +00:00
|
|
|
return err;
|
2003-02-28 16:08:34 +00:00
|
|
|
}
|
2014-02-13 19:21:18 +00:00
|
|
|
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|