2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_INIT_SIZE_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
|
|
|
|
2003-08-05 01:24:44 +00:00
|
|
|
/* init an mp_init for a given size */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_init_size(mp_int *a, int size)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2019-12-04 23:48:25 +00:00
|
|
|
size = MP_MAX(MP_MIN_DIGIT_COUNT, size);
|
|
|
|
|
|
|
|
if (size > MP_MAX_DIGIT_COUNT) {
|
2019-12-23 10:12:42 +00:00
|
|
|
return MP_OVF;
|
2019-12-04 23:48:25 +00:00
|
|
|
}
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2017-08-30 17:11:35 +00:00
|
|
|
/* alloc mem */
|
2019-04-09 09:08:26 +00:00
|
|
|
a->dp = (mp_digit *) MP_CALLOC((size_t)size, sizeof(mp_digit));
|
2017-08-30 17:11:35 +00:00
|
|
|
if (a->dp == NULL) {
|
|
|
|
return MP_MEM;
|
|
|
|
}
|
2004-10-29 22:07:18 +00:00
|
|
|
|
2017-08-30 17:11:35 +00:00
|
|
|
/* set the members */
|
|
|
|
a->used = 0;
|
|
|
|
a->alloc = size;
|
|
|
|
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
|