libtommath/mp_zero.c

14 lines
283 B
C
Raw Normal View History

#include "tommath_private.h"
#ifdef MP_ZERO_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
/* set to zero */
2017-08-30 17:07:12 +00:00
void mp_zero(mp_int *a)
2003-02-28 16:08:34 +00:00
{
2017-08-30 17:15:27 +00:00
a->sign = MP_ZPOS;
s_mp_zero_digs(a->dp, a->used);
2017-08-30 17:15:27 +00:00
a->used = 0;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif