Differences From Artifact [da3e0822f1]:
- File libtommath/bn_mp_copy.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: 1359) [more...]
To Artifact [61742fc4a9]:
- File libtommath/bn_mp_copy.c — part of check-in [27923399a3] at 2017-08-29 20:25:53 on branch libtommath-1.0.1 — libtommath 1.0.1 rc2, for test purposes only (user: jan.nijtmans size: 1477) [more...]
| ︙ | ︙ | |||
59 60 61 62 63 64 65 | /* copy used count and sign */ b->used = a->used; b->sign = a->sign; return MP_OKAY; } #endif | | | | | 59 60 61 62 63 64 65 66 67 68 | /* copy used count and sign */ b->used = a->used; b->sign = a->sign; return MP_OKAY; } #endif /* ref: HEAD -> release/1.0.1, tag: v1.0.1-rc2 */ /* git commit: e8c27ba7df0efb90708029115c94d681dfa7812f */ /* commit time: 2017-08-29 10:48:46 +0200 */ |