2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_INIT_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
|
|
|
|
2004-08-09 22:15:59 +00:00
|
|
|
/* init a new mp_int */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_init(mp_int *a)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2017-08-30 17:11:35 +00:00
|
|
|
/* allocate memory required and clear it */
|
2019-04-09 09:08:26 +00:00
|
|
|
a->dp = (mp_digit *) MP_CALLOC((size_t)MP_PREC, sizeof(mp_digit));
|
2017-08-30 17:11:35 +00:00
|
|
|
if (a->dp == NULL) {
|
|
|
|
return MP_MEM;
|
|
|
|
}
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:11:35 +00:00
|
|
|
/* set the used to zero, allocated digits to the default precision
|
|
|
|
* and sign to positive */
|
|
|
|
a->used = 0;
|
|
|
|
a->alloc = MP_PREC;
|
|
|
|
a->sign = MP_ZPOS;
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:11:35 +00:00
|
|
|
return MP_OKAY;
|
2003-02-28 16:08:34 +00:00
|
|
|
}
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|