| 
									
										
										
										
											2018-05-02 21:43:17 +02:00
										 |  |  | #include "tommath_private.h"
 | 
					
						
							| 
									
										
										
										
											2004-10-29 22:07:18 +00:00
										 |  |  | #ifdef BN_MP_MONTGOMERY_REDUCE_C
 | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  | /* LibTomMath, multiple-precision integer library -- Tom St Denis
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-08-05 01:24:44 +00:00
										 |  |  |  * LibTomMath is a library that provides multiple-precision | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  |  * integer arithmetic as well as number theoretic functionality. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-08-05 01:24:44 +00:00
										 |  |  |  * The library was designed directly after the MPI library by | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  |  * Michael Fromberger but has been written from scratch with | 
					
						
							|  |  |  |  * additional optimizations in place. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The library is free for all purposes without any express | 
					
						
							|  |  |  |  * guarantee it works. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-29 13:35:26 +00:00
										 |  |  | /* computes xR**-1 == x (mod N) via Montgomery Reduction */ | 
					
						
							| 
									
										
										
										
											2017-09-20 16:59:43 +02:00
										 |  |  | int mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho) | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |    int     ix, res, digs; | 
					
						
							|  |  |  |    mp_digit mu; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    /* can the fast reduction [comba] method be used?
 | 
					
						
							|  |  |  |     * | 
					
						
							|  |  |  |     * Note that unlike in mul you're safely allowed *less* | 
					
						
							|  |  |  |     * than the available columns [255 per default] since carries | 
					
						
							|  |  |  |     * are fixed up in the inner loop. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |    digs = (n->used * 2) + 1; | 
					
						
							| 
									
										
										
										
											2017-10-15 19:58:35 +02:00
										 |  |  |    if ((digs < (int)MP_WARRAY) && | 
					
						
							|  |  |  |        (x->used <= (int)MP_WARRAY) && | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |        (n->used < | 
					
						
							| 
									
										
										
										
											2017-10-15 19:57:12 +02:00
										 |  |  |         (int)(1u << (((size_t)CHAR_BIT * sizeof(mp_word)) - (2u * (size_t)DIGIT_BIT))))) { | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |       return fast_mp_montgomery_reduce(x, n, rho); | 
					
						
							|  |  |  |    } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    /* grow the input as required */ | 
					
						
							|  |  |  |    if (x->alloc < digs) { | 
					
						
							|  |  |  |       if ((res = mp_grow(x, digs)) != MP_OKAY) { | 
					
						
							|  |  |  |          return res; | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |    } | 
					
						
							|  |  |  |    x->used = digs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    for (ix = 0; ix < n->used; ix++) { | 
					
						
							|  |  |  |       /* mu = ai * rho mod b
 | 
					
						
							|  |  |  |        * | 
					
						
							|  |  |  |        * The value of rho must be precalculated via | 
					
						
							|  |  |  |        * montgomery_setup() such that | 
					
						
							|  |  |  |        * it equals -1/n0 mod b this allows the | 
					
						
							|  |  |  |        * following inner loop to reduce the | 
					
						
							|  |  |  |        * input one digit at a time | 
					
						
							|  |  |  |        */ | 
					
						
							|  |  |  |       mu = (mp_digit)(((mp_word)x->dp[ix] * (mp_word)rho) & MP_MASK); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       /* a = a + mu * m * b**i */ | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |          int iy; | 
					
						
							|  |  |  |          mp_digit *tmpn, *tmpx, u; | 
					
						
							|  |  |  |          mp_word r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          /* alias for digits of the modulus */ | 
					
						
							|  |  |  |          tmpn = n->dp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          /* alias for the digits of x [the input] */ | 
					
						
							|  |  |  |          tmpx = x->dp + ix; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          /* set the carry to zero */ | 
					
						
							|  |  |  |          u = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          /* Multiply and add in place */ | 
					
						
							|  |  |  |          for (iy = 0; iy < n->used; iy++) { | 
					
						
							|  |  |  |             /* compute product and sum */ | 
					
						
							|  |  |  |             r       = ((mp_word)mu * (mp_word)*tmpn++) + | 
					
						
							| 
									
										
										
										
											2017-10-15 19:58:35 +02:00
										 |  |  |                       (mp_word)u + (mp_word)*tmpx; | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* get carry */ | 
					
						
							| 
									
										
										
										
											2017-10-15 19:58:35 +02:00
										 |  |  |             u       = (mp_digit)(r >> (mp_word)DIGIT_BIT); | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* fix digit */ | 
					
						
							| 
									
										
										
										
											2017-10-15 19:58:35 +02:00
										 |  |  |             *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK); | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |          } | 
					
						
							|  |  |  |          /* At this point the ix'th digit of x should be zero */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          /* propagate carries upwards as required*/ | 
					
						
							| 
									
										
										
										
											2017-10-15 19:57:12 +02:00
										 |  |  |          while (u != 0u) { | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |             *tmpx   += u; | 
					
						
							|  |  |  |             u        = *tmpx >> DIGIT_BIT; | 
					
						
							|  |  |  |             *tmpx++ &= MP_MASK; | 
					
						
							|  |  |  |          } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |    } | 
					
						
							| 
									
										
										
										
											2003-08-29 14:06:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |    /* at this point the n.used'th least
 | 
					
						
							|  |  |  |     * significant digits of x are all zero | 
					
						
							|  |  |  |     * which means we can shift x to the | 
					
						
							|  |  |  |     * right by n.used digits and the | 
					
						
							|  |  |  |     * residue is unchanged. | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2003-08-29 14:06:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:23:46 +02:00
										 |  |  |    /* x = x/b**n.used */ | 
					
						
							|  |  |  |    mp_clamp(x); | 
					
						
							|  |  |  |    mp_rshd(x, n->used); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    /* if x >= n then x = x - n */ | 
					
						
							|  |  |  |    if (mp_cmp_mag(x, n) != MP_LT) { | 
					
						
							|  |  |  |       return s_mp_sub(x, n, x); | 
					
						
							|  |  |  |    } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    return MP_OKAY; | 
					
						
							| 
									
										
										
										
											2003-02-28 16:08:34 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-10-29 22:07:18 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-08-01 16:37:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-28 16:27:26 +02:00
										 |  |  | /* ref:         $Format:%D$ */ | 
					
						
							|  |  |  | /* git commit:  $Format:%H$ */ | 
					
						
							|  |  |  | /* commit time: $Format:%ai$ */ |