libtommath/mp_copy.c

30 lines
628 B
C
Raw Normal View History

#include "tommath_private.h"
#ifdef MP_COPY_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
/* copy, b = a */
mp_err mp_copy(const mp_int *a, mp_int *b)
2003-02-28 16:08:34 +00:00
{
mp_err err;
2017-08-29 20:23:48 +00:00
/* if dst == src do nothing */
if (a == b) {
return MP_OKAY;
}
2003-02-28 16:08:34 +00:00
2017-08-29 20:23:48 +00:00
/* grow dest */
if ((err = mp_grow(b, a->used)) != MP_OKAY) {
return err;
2017-08-29 20:23:48 +00:00
}
2003-02-28 16:08:34 +00:00
/* copy everything over and zero high digits */
s_mp_copy_digs(b->dp, a->dp, a->used);
s_mp_zero_digs(b->dp + a->used, b->used - a->used);
2017-08-29 20:23:48 +00:00
b->used = a->used;
b->sign = a->sign;
2017-08-29 20:23:48 +00:00
return MP_OKAY;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif