Differences From Artifact [aa1c7e5949]:
- File libtommath/bn_mp_mulmod.c — part of check-in [5d8831620e] at 2006-12-01 00:08:10 on branch libtommath — Import of libtommath 0.39+ (user: kennykb size: 1033) [more...]
To Artifact [8d02dfd37d]:
- File libtommath/bn_mp_mulmod.c — part of check-in [79367df0f0] at 2011-03-02 16:06:41 on branch core-8-5-branch — Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause more harm than good. Purged them. (user: dgp size: 894) [more...]
| ︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 | - - - - |
return res;
}
res = mp_mod (&t, c, d);
mp_clear (&t);
return res;
}
#endif
|