libtommath/bn_mp_shrink.c

23 lines
629 B
C
Raw Normal View History

#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 */
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;
int alloc = MP_MAX(MP_MIN_PREC, a->used);
if (a->alloc != alloc) {
if ((tmp = (mp_digit *) MP_REALLOC(a->dp,
(size_t)a->alloc * sizeof(mp_digit),
(size_t)alloc * sizeof(mp_digit))) == NULL) {
2017-08-30 17:13:53 +00:00
return MP_MEM;
}
a->dp = tmp;
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