2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2004-10-29 22:07:18 +00:00
|
|
|
#ifdef BN_MP_SHRINK_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
|
|
|
|
|
|
|
/* shrink a bignum */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_shrink(mp_int *a)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2017-08-30 17:13:53 +00:00
|
|
|
mp_digit *tmp;
|
2019-05-10 21:59:46 +00:00
|
|
|
int alloc = MP_MAX(MP_MIN_PREC, a->used);
|
|
|
|
if (a->alloc != alloc) {
|
2019-04-09 09:08:26 +00:00
|
|
|
if ((tmp = (mp_digit *) MP_REALLOC(a->dp,
|
|
|
|
(size_t)a->alloc * sizeof(mp_digit),
|
2019-05-10 21:59:46 +00:00
|
|
|
(size_t)alloc * sizeof(mp_digit))) == NULL) {
|
2017-08-30 17:13:53 +00:00
|
|
|
return MP_MEM;
|
|
|
|
}
|
|
|
|
a->dp = tmp;
|
2019-05-10 21:59:46 +00:00
|
|
|
a->alloc = alloc;
|
2017-08-30 17:13:53 +00:00
|
|
|
}
|
|
|
|
return MP_OKAY;
|
2003-02-28 16:08:34 +00:00
|
|
|
}
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|