2 #ifdef BN_FAST_MP_MONTGOMERY_REDUCE_C
3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 /* computes xR**-1 == x (mod N) via Montgomery Reduction
20 * This is an optimized implementation of montgomery_reduce
21 * which uses the comba method to quickly calculate the columns of the
24 * Based on Algorithm 14.32 on pp.601 of HAC.
26 int fast_mp_montgomery_reduce (mp_int
* x
, mp_int
* n
, mp_digit rho
)
31 /* get old used count */
34 /* grow a as required */
35 if (x
->alloc
< n
->used
+ 1) {
36 if ((res
= mp_grow (x
, n
->used
+ 1)) != MP_OKAY
) {
41 /* first we have to get the digits of the input into
42 * an array of double precision words W[...]
46 register mp_digit
*tmpx
;
48 /* alias for the W[] array */
51 /* alias for the digits of x*/
54 /* copy the digits of a into W[0..a->used-1] */
55 for (ix
= 0; ix
< x
->used
; ix
++) {
59 /* zero the high words of W[a->used..m->used*2] */
60 for (; ix
< n
->used
* 2 + 1; ix
++) {
65 /* now we proceed to zero successive digits
66 * from the least significant upwards
68 for (ix
= 0; ix
< n
->used
; ix
++) {
71 * We avoid a double precision multiplication (which isn't required)
72 * by casting the value down to a mp_digit. Note this requires
73 * that W[ix-1] have the carry cleared (see after the inner loop)
76 mu
= (mp_digit
) (((W
[ix
] & MP_MASK
) * rho
) & MP_MASK
);
78 /* a = a + mu * m * b**i
80 * This is computed in place and on the fly. The multiplication
81 * by b**i is handled by offseting which columns the results
84 * Note the comba method normally doesn't handle carries in the
85 * inner loop In this case we fix the carry from the previous
86 * column since the Montgomery reduction requires digits of the
87 * result (so far) [see above] to work. This is
88 * handled by fixing up one carry after the inner loop. The
89 * carry fixups are done in order so after these loops the
90 * first m->used words of W[] have the carries fixed
94 register mp_digit
*tmpn
;
97 /* alias for the digits of the modulus */
100 /* Alias for the columns set by an offset of ix */
104 for (iy
= 0; iy
< n
->used
; iy
++) {
105 *_W
++ += ((mp_word
)mu
) * ((mp_word
)*tmpn
++);
109 /* now fix carry for next digit, W[ix+1] */
110 W
[ix
+ 1] += W
[ix
] >> ((mp_word
) DIGIT_BIT
);
113 /* now we have to propagate the carries and
114 * shift the words downward [all those least
115 * significant digits we zeroed].
118 register mp_digit
*tmpx
;
119 register mp_word
*_W
, *_W1
;
121 /* nox fix rest of carries */
123 /* alias for current word */
126 /* alias for next word, where the carry goes */
129 for (; ix
<= n
->used
* 2 + 1; ix
++) {
130 *_W
++ += *_W1
++ >> ((mp_word
) DIGIT_BIT
);
133 /* copy out, A = A/b**n
135 * The result is A/b**n but instead of converting from an
136 * array of mp_word to mp_digit than calling mp_rshd
137 * we just copy them in the right order
140 /* alias for destination word */
143 /* alias for shifted double precision result */
146 for (ix
= 0; ix
< n
->used
+ 1; ix
++) {
147 *tmpx
++ = (mp_digit
)(*_W
++ & ((mp_word
) MP_MASK
));
150 /* zero oldused digits, if the input a was larger than
151 * m->used+1 we'll have to clear the digits
153 for (; ix
< olduse
; ix
++) {
158 /* set the max used and clamp */
159 x
->used
= n
->used
+ 1;
162 /* if A >= m then A = A - m */
163 if (mp_cmp_mag (x
, n
) != MP_LT
) {
164 return s_mp_sub (x
, n
, x
);
170 /* $Source: /cvs/libtom/libtommath/bn_fast_mp_montgomery_reduce.c,v $ */
171 /* $Revision: 1.3 $ */
172 /* $Date: 2006/03/31 14:18:44 $ */