tommath/bn_mp_copy.c

55 lines
1.1 KiB
C
Raw Normal View History

2003-02-28 11:08:34 -05:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
* LibTomMath is library that provides for multiple-precision
* integer arithmetic as well as number theoretic functionality.
*
* The library is designed directly after the MPI library by
* Michael Fromberger but has been written from scratch with
* additional optimizations in place.
*
* The library is free for all purposes without any express
* guarantee it works.
*
2003-03-12 21:11:11 -05:00
* Tom St Denis, tomstdenis@iahu.ca, http://math.libtomcrypt.org
2003-02-28 11:08:34 -05:00
*/
#include <tommath.h>
/* copy, b = a */
int
mp_copy (mp_int * a, mp_int * b)
{
2003-02-28 11:09:08 -05:00
int res, n;
2003-02-28 11:08:34 -05:00
/* if dst == src do nothing */
2003-05-29 09:35:26 -04:00
if (a == b) {
2003-02-28 11:08:34 -05:00
return MP_OKAY;
}
/* grow dest */
if ((res = mp_grow (b, a->used)) != MP_OKAY) {
return res;
}
/* zero b and copy the parameters over */
2003-02-28 11:09:08 -05:00
{
register mp_digit *tmpa, *tmpb;
2003-05-17 08:33:54 -04:00
/* pointer aliases */
2003-02-28 11:09:08 -05:00
tmpa = a->dp;
tmpb = b->dp;
/* copy all the digits */
for (n = 0; n < a->used; n++) {
*tmpb++ = *tmpa++;
}
2003-02-28 11:08:34 -05:00
2003-02-28 11:09:08 -05:00
/* clear high digits */
2003-05-17 08:33:54 -04:00
for (; n < b->used; n++) {
2003-02-28 11:09:08 -05:00
*tmpb++ = 0;
}
2003-02-28 11:08:34 -05:00
}
2003-05-17 08:33:54 -04:00
b->used = a->used;
b->sign = a->sign;
2003-02-28 11:08:34 -05:00
return MP_OKAY;
}