Differences From Artifact [66ae6f2349]:
- File libtommath/bn_mp_mul.c — part of check-in [c7a3a1452b] at 2016-03-11 17:13:38 on branch gahr-ticket-e6f27aa56f — [e6f27aa56f] Initial import of libtommath-1.0 This commit brings in libtommath-1.0, as of tag v1.0 of the upstream repository at https://github.com/libtom/libtommath. Only the top-level directory has been imported: the demo, etc, logs, mtest, pics, pre_gen, and tombc directories have been removed from our repo. The stubs tables have been regenerated to accomodate for the new function: mp_expt_d_ex(mp_int *a, mp_digit b, mp_int *c, int fast); See https://github.com/libtom/libtommath/commit/e9b1837 for details. Only the unix build system has been modified for now. Windows and Mac OSX will come later. (user: gahr size: 1773) [more...]
To Artifact [804909774b]:
- File libtommath/bn_mp_mul.c — part of check-in [18372c0c7e] at 2017-08-29 19:52:35 on branch libtommath — libtommath 1.0.1 rc 2 (user: jan.nijtmans size: 1891) [more...]
| ︙ | ︙ | |||
58 59 60 61 62 63 64 |
}
}
c->sign = (c->used > 0) ? neg : MP_ZPOS;
return res;
}
#endif
| | | | | 58 59 60 61 62 63 64 65 66 67 |
}
}
c->sign = (c->used > 0) ? neg : MP_ZPOS;
return res;
}
#endif
/* ref: HEAD -> release/1.0.1, tag: v1.0.1-rc2 */
/* git commit: e8c27ba7df0efb90708029115c94d681dfa7812f */
/* commit time: 2017-08-29 10:48:46 +0200 */
|