libtommath/bn_mp_n_root.c

15 lines
373 B
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 22:07:18 +00:00
#ifdef BN_MP_N_ROOT_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_n_root_ex()
* computes c = (a)**(1/b) such that (c)**b <= a and (c+1)**b > a
2003-02-28 16:08:34 +00:00
*/
2017-09-20 14:59:43 +00:00
int mp_n_root(const mp_int *a, mp_digit b, mp_int *c)
2003-02-28 16:08:34 +00:00
{
2017-08-30 17:11:35 +00:00
return mp_n_root_ex(a, b, c, 0);
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif