Merge pull request #4 from moritz/negative-mod

Fix mp_mod(a, b, c) if b < 0 and a = n * b, n integer
This commit is contained in:
Steffen Jaeckel 2012-05-11 14:59:48 -07:00
commit 1bd1320b19
1 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
* Tom St Denis, tomstdenis@gmail.com, http://libtom.org
*/
/* c = a mod b, 0 <= c < b */
/* c = a mod b, 0 <= c < b if b > 0, b < c <= 0 if b < 0 */
int
mp_mod (mp_int * a, mp_int * b, mp_int * c)
{
@ -31,11 +31,11 @@ mp_mod (mp_int * a, mp_int * b, mp_int * c)
return res;
}
if (t.sign != b->sign) {
res = mp_add (b, &t, c);
} else {
if (mp_iszero(&t) || t.sign == b->sign) {
res = MP_OKAY;
mp_exch (&t, c);
} else {
res = mp_add (b, &t, c);
}
mp_clear (&t);