libtommath/s_mp_mul_high.c

53 lines
1.4 KiB
C
Raw Permalink Normal View History

#include "tommath_private.h"
#ifdef S_MP_MUL_HIGH_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
2003-05-17 12:33:54 +00:00
/* multiplies |a| * |b| and does not compute the lower digs digits
2003-02-28 16:08:34 +00:00
* [meant to get the higher part of the product]
*/
mp_err s_mp_mul_high(const mp_int *a, const mp_int *b, mp_int *c, int digs)
2003-02-28 16:08:34 +00:00
{
mp_int t;
2019-10-29 19:06:20 +00:00
int pa, pb, ix;
2019-05-19 15:16:13 +00:00
mp_err err;
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
/* can we use the fast multiplier? */
if (MP_HAS(S_MP_MUL_HIGH_COMBA)
2019-04-08 21:48:39 +00:00
&& ((a->used + b->used + 1) < MP_WARRAY)
2019-11-05 17:04:05 +00:00
&& (MP_MIN(a->used, b->used) < MP_MAX_COMBA)) {
return s_mp_mul_high_comba(a, b, c, digs);
2017-08-30 17:15:27 +00:00
}
2003-02-28 16:08:34 +00:00
2019-05-19 15:16:13 +00:00
if ((err = mp_init_size(&t, a->used + b->used + 1)) != MP_OKAY) {
return err;
2017-08-30 17:15:27 +00:00
}
t.used = a->used + b->used + 1;
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
pa = a->used;
pb = b->used;
for (ix = 0; ix < pa; ix++) {
2019-10-29 19:06:20 +00:00
int iy;
mp_digit u = 0;
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
for (iy = digs - ix; iy < pb; iy++) {
/* calculate the double precision result */
2019-10-29 19:06:20 +00:00
mp_word r = (mp_word)t.dp[ix + iy] +
((mp_word)a->dp[ix] * (mp_word)b->dp[iy]) +
(mp_word)u;
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
/* get the lower part */
2019-10-29 19:06:20 +00:00
t.dp[ix + iy] = (mp_digit)(r & (mp_word)MP_MASK);
2003-02-28 16:08:34 +00:00
2017-08-30 17:15:27 +00:00
/* carry the carry */
2019-04-13 06:46:57 +00:00
u = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
2017-08-30 17:15:27 +00:00
}
2019-10-29 19:06:20 +00:00
t.dp[ix + pb] = u;
2017-08-30 17:15:27 +00:00
}
mp_clamp(&t);
mp_exch(&t, c);
mp_clear(&t);
return MP_OKAY;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif