tommath/bn_mp_montgomery_setup.c

56 lines
1.5 KiB
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 18:07:18 -04:00
#ifdef BN_MP_MONTGOMERY_SETUP_C
2003-02-28 11:08:34 -05:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
2003-08-04 21:24:44 -04:00
* LibTomMath is a library that provides multiple-precision
2003-02-28 11:08:34 -05:00
* integer arithmetic as well as number theoretic functionality.
*
2003-08-04 21:24:44 -04:00
* The library was designed directly after the MPI library by
2003-02-28 11:08:34 -05:00
* Michael Fromberger but has been written from scratch with
* additional optimizations in place.
*
2018-12-29 11:56:20 -05:00
* SPDX-License-Identifier: Unlicense
2003-02-28 11:08:34 -05:00
*/
/* setups the montgomery reduction stuff */
2017-09-20 10:59:43 -04:00
int mp_montgomery_setup(const mp_int *n, mp_digit *rho)
2003-02-28 11:08:34 -05:00
{
2017-08-30 13:11:35 -04:00
mp_digit x, b;
2003-02-28 11:08:34 -05:00
2017-08-30 13:11:35 -04:00
/* fast inversion mod 2**k
*
* Based on the fact that
*
* XA = 1 (mod 2**n) => (X(2-XA)) A = 1 (mod 2**2n)
* => 2*X*A - X*X*A*A = 1
* => 2*(1) - (1) = 1
*/
b = n->dp[0];
2003-02-28 11:08:34 -05:00
2017-10-15 13:57:12 -04:00
if ((b & 1u) == 0u) {
2017-08-30 13:11:35 -04:00
return MP_VAL;
}
2003-02-28 11:08:34 -05:00
2017-10-15 13:57:12 -04:00
x = (((b + 2u) & 4u) << 1) + b; /* here x*a==1 mod 2**4 */
x *= 2u - (b * x); /* here x*a==1 mod 2**8 */
2003-05-17 08:33:54 -04:00
#if !defined(MP_8BIT)
2017-10-15 13:57:12 -04:00
x *= 2u - (b * x); /* here x*a==1 mod 2**16 */
2003-05-17 08:33:54 -04:00
#endif
#if defined(MP_64BIT) || !(defined(MP_8BIT) || defined(MP_16BIT))
2017-10-15 13:57:12 -04:00
x *= 2u - (b * x); /* here x*a==1 mod 2**32 */
2003-05-17 08:33:54 -04:00
#endif
#ifdef MP_64BIT
2017-10-15 13:57:12 -04:00
x *= 2u - (b * x); /* here x*a==1 mod 2**64 */
2003-05-17 08:33:54 -04:00
#endif
2003-02-28 11:08:34 -05:00
2017-08-30 13:11:35 -04:00
/* rho = -1/m mod b */
2017-10-15 13:58:35 -04:00
*rho = (mp_digit)(((mp_word)1 << (mp_word)DIGIT_BIT) - x) & MP_MASK;
2003-02-28 11:08:34 -05:00
2017-08-30 13:11:35 -04:00
return MP_OKAY;
2003-02-28 11:08:34 -05:00
}
2004-10-29 18:07:18 -04:00
#endif
2005-08-01 12:37:28 -04:00
2017-08-28 10:27:26 -04:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */