libtommath/bn_mp_mod_d.c

11 lines
262 B
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 22:07:18 +00:00
#ifdef BN_MP_MOD_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
2017-09-20 14:59:43 +00:00
int mp_mod_d(const mp_int *a, mp_digit b, mp_digit *c)
2003-02-28 16:08:34 +00:00
{
2017-08-30 17:11:35 +00:00
return mp_div_d(a, b, NULL, c);
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif