libtommath/bn_mp_expt_d.c

13 lines
309 B
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 22:07:18 +00:00
#ifdef BN_MP_EXPT_D_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
/* wrapper function for mp_expt_d_ex() */
mp_err mp_expt_d(const mp_int *a, mp_digit b, mp_int *c)
2003-02-28 16:08:34 +00:00
{
2017-08-29 20:23:48 +00:00
return mp_expt_d_ex(a, b, c, 0);
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif