2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2004-10-29 22:07:18 +00:00
|
|
|
#ifdef BN_S_MP_SQR_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
|
|
|
|
|
|
|
/* low level squaring, b = a*a, HAC pp.596-597, Algorithm 14.16 */
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_err s_mp_sqr(const mp_int *a, mp_int *b)
|
2003-02-28 16:08:34 +00:00
|
|
|
{
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_int t;
|
|
|
|
int ix, iy, pa;
|
2019-05-19 15:16:13 +00:00
|
|
|
mp_err err;
|
2019-05-12 22:22:18 +00:00
|
|
|
mp_word r;
|
2017-08-30 17:15:27 +00:00
|
|
|
mp_digit u, tmpx, *tmpt;
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
pa = a->used;
|
2019-05-19 15:16:13 +00:00
|
|
|
if ((err = mp_init_size(&t, (2 * pa) + 1)) != MP_OKAY) {
|
|
|
|
return err;
|
2017-08-30 17:15:27 +00:00
|
|
|
}
|
2004-04-11 20:46:22 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* default used is maximum possible size */
|
|
|
|
t.used = (2 * pa) + 1;
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
for (ix = 0; ix < pa; ix++) {
|
|
|
|
/* first calculate the digit at 2*ix */
|
|
|
|
/* calculate double precision result */
|
|
|
|
r = (mp_word)t.dp[2*ix] +
|
|
|
|
((mp_word)a->dp[ix] * (mp_word)a->dp[ix]);
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* store lower part in result */
|
2017-10-15 17:58:35 +00:00
|
|
|
t.dp[ix+ix] = (mp_digit)(r & (mp_word)MP_MASK);
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* get the carry */
|
2019-04-13 06:46:57 +00:00
|
|
|
u = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* left hand side of A[ix] * A[iy] */
|
|
|
|
tmpx = a->dp[ix];
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* alias for where to store the results */
|
|
|
|
tmpt = t.dp + ((2 * ix) + 1);
|
2017-08-30 03:51:11 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
for (iy = ix + 1; iy < pa; iy++) {
|
|
|
|
/* first calculate the product */
|
2017-10-15 17:58:35 +00:00
|
|
|
r = (mp_word)tmpx * (mp_word)a->dp[iy];
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* now calculate the double precision result, note we use
|
|
|
|
* addition instead of *2 since it's easier to optimize
|
|
|
|
*/
|
2017-10-15 17:58:35 +00:00
|
|
|
r = (mp_word)*tmpt + r + r + (mp_word)u;
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* store lower part */
|
2017-10-15 17:58:35 +00:00
|
|
|
*tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
/* get 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
|
|
|
}
|
|
|
|
/* propagate upwards */
|
2017-10-15 17:57:12 +00:00
|
|
|
while (u != 0uL) {
|
2017-10-15 17:58:35 +00:00
|
|
|
r = (mp_word)*tmpt + (mp_word)u;
|
|
|
|
*tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
|
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
|
|
|
}
|
|
|
|
}
|
2003-02-28 16:08:34 +00:00
|
|
|
|
2017-08-30 17:15:27 +00:00
|
|
|
mp_clamp(&t);
|
|
|
|
mp_exch(&t, b);
|
|
|
|
mp_clear(&t);
|
|
|
|
return MP_OKAY;
|
2003-02-28 16:08:34 +00:00
|
|
|
}
|
2004-10-29 22:07:18 +00:00
|
|
|
#endif
|