4534056c28
* MP_USE_ENUMS enables enums * Wc++-compat catches some implicit conversions if MP_USE_ENUMS is defined * 100% backwards compatible API/ABI if MP_USE_ENUMS is not defined
12 lines
289 B
C
12 lines
289 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 */
|
|
mp_err mp_set_int(mp_int *a, unsigned long b)
|
|
{
|
|
return mp_set_long(a, b & 0xFFFFFFFFUL);
|
|
}
|
|
#endif
|