libtommath/bn_mp_set_int.c
2019-04-07 17:26:31 +02:00

12 lines
286 B
C

#include "tommath_private.h"
#ifdef BN_MP_SET_INT_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
/* set a 32-bit const */
int mp_set_int(mp_int *a, unsigned long b)
{
return mp_set_long(a, b & 0xFFFFFFFFUL);
}
#endif