2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#ifdef MP_ADD_D_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
|
|
|
|
|
|
|
/* single digit addition */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err mp_add_d(const mp_int *a, mp_digit b, mp_int *c)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2019-10-29 21:38:49 +00:00
|
|
|
mp_err err;
|
2019-10-29 19:02:32 +00:00
|
|
|
int oldused;
|
2017-08-29 20:23:48 +00:00
|
|
|
|
2019-10-23 18:06:08 +00:00
|
|
|
/* fast path for a == c */
|
2019-10-24 19:32:31 +00:00
|
|
|
if (a == c) {
|
2019-11-09 19:23:03 +00:00
|
|
|
if (!mp_isneg(c) &&
|
2019-10-24 19:32:31 +00:00
|
|
|
!mp_iszero(c) &&
|
|
|
|
((c->dp[0] + b) < MP_DIGIT_MAX)) {
|
|
|
|
c->dp[0] += b;
|
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2019-11-09 19:23:03 +00:00
|
|
|
if (mp_isneg(c) &&
|
2019-10-24 19:32:31 +00:00
|
|
|
(c->dp[0] > b)) {
|
|
|
|
c->dp[0] -= b;
|
|
|
|
return MP_OKAY;
|
|
|
|
}
|
2019-10-23 18:06:08 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 20:23:48 +00:00
|
|
|
/* grow c as required */
|
2019-10-29 21:38:49 +00:00
|
|
|
if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
|
|
|
|
return err;
|
2017-08-29 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if a is negative and |a| >= b, call c = |a| - b */
|
2019-11-09 19:23:03 +00:00
|
|
|
if (mp_isneg(a) && ((a->used > 1) || (a->dp[0] >= b))) {
|
2017-09-20 14:59:43 +00:00
|
|
|
mp_int a_ = *a;
|
2017-08-29 20:23:48 +00:00
|
|
|
/* temporarily fix sign of a */
|
2017-09-20 14:59:43 +00:00
|
|
|
a_.sign = MP_ZPOS;
|
2017-08-29 20:23:48 +00:00
|
|
|
|
|
|
|
/* c = |a| - b */
|
2019-05-19 15:16:13 +00:00
|
|
|
err = mp_sub_d(&a_, b, c);
|
2017-08-29 20:23:48 +00:00
|
|
|
|
|
|
|
/* fix sign */
|
2017-09-20 14:59:43 +00:00
|
|
|
c->sign = MP_NEG;
|
2017-08-29 20:23:48 +00:00
|
|
|
|
|
|
|
/* clamp */
|
|
|
|
mp_clamp(c);
|
|
|
|
|
2019-05-19 15:16:13 +00:00
|
|
|
return err;
|
2017-08-29 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* old number of used digits in c */
|
|
|
|
oldused = c->used;
|
|
|
|
|
|
|
|
/* if a is positive */
|
2019-11-09 19:23:03 +00:00
|
|
|
if (!mp_isneg(a)) {
|
2019-05-20 17:11:25 +00:00
|
|
|
/* add digits, mu is carry */
|
2019-10-29 19:02:32 +00:00
|
|
|
int i;
|
2019-05-20 17:11:25 +00:00
|
|
|
mp_digit mu = b;
|
2019-10-29 19:02:32 +00:00
|
|
|
for (i = 0; i < a->used; i++) {
|
|
|
|
c->dp[i] = a->dp[i] + mu;
|
|
|
|
mu = c->dp[i] >> MP_DIGIT_BIT;
|
|
|
|
c->dp[i] &= MP_MASK;
|
2017-08-29 20:23:48 +00:00
|
|
|
}
|
|
|
|
/* set final carry */
|
2019-10-29 19:02:32 +00:00
|
|
|
c->dp[i] = mu;
|
2017-08-29 20:23:48 +00:00
|
|
|
|
|
|
|
/* setup size */
|
|
|
|
c->used = a->used + 1;
|
|
|
|
} else {
|
|
|
|
/* a was negative and |a| < b */
|
2019-10-29 19:02:32 +00:00
|
|
|
c->used = 1;
|
2017-08-29 20:23:48 +00:00
|
|
|
|
|
|
|
/* the result is a single digit */
|
2019-10-29 19:02:32 +00:00
|
|
|
c->dp[0] = (a->used == 1) ? b - a->dp[0] : b;
|
2017-08-29 20:23:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* sign always positive */
|
|
|
|
c->sign = MP_ZPOS;
|
|
|
|
|
|
|
|
/* now zero to oldused */
|
2019-10-29 20:48:50 +00:00
|
|
|
s_mp_zero_digs(c->dp + c->used, oldused - c->used);
|
2017-08-29 20:23:48 +00:00
|
|
|
mp_clamp(c);
|
|
|
|
|
|
|
|
return MP_OKAY;
|
2003-02-28 16:08:34 +00:00
|
|
|
}
|
2003-07-16 00:26:58 +00:00
|
|
|
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|