1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-01 03:38:14 +00:00
simplesshd/dropbear/libtommath/bn_mp_clear.c

21 lines
502 B
C
Raw Normal View History

2020-12-28 21:40:37 +00:00
#include "tommath_private.h"
2014-12-10 21:56:49 +00:00
#ifdef BN_MP_CLEAR_C
2020-12-28 21:40:37 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2014-12-10 21:56:49 +00:00
/* clear one (frees) */
2020-12-28 21:40:37 +00:00
void mp_clear(mp_int *a)
2014-12-10 21:56:49 +00:00
{
2020-12-28 21:40:37 +00:00
/* only do anything if a hasn't been freed previously */
if (a->dp != NULL) {
/* free ram */
MP_FREE_DIGITS(a->dp, a->alloc);
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* reset members to make debugging easier */
a->dp = NULL;
a->alloc = a->used = 0;
a->sign = MP_ZPOS;
}
2014-12-10 21:56:49 +00:00
}
#endif