1234567891011121314 |
- fix from
- http://lists.openembedded.org/pipermail/openembedded-core/2013-May/079000.html
- --- dropbear-2014.63.orig/libtommath/bn_mp_montgomery_setup.c 2014-02-19 15:05:24.000000000 +0100
- +++ dropbear-2014.63/libtommath/bn_mp_montgomery_setup.c 2014-03-01 12:34:21.000000000 +0100
- @@ -48,7 +48,7 @@ mp_montgomery_setup (mp_int * n, mp_digi
- #endif
-
- /* rho = -1/m mod b */
- - *rho = (unsigned long)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
- + *rho = (mp_digit)(((mp_word)1 << ((mp_word) DIGIT_BIT)) - x) & MP_MASK;
-
- return MP_OKAY;
- }
|