comparison libtommath/changes.txt @ 1739:13d834efc376 fuzz

merge from main
author Matt Johnston <matt@ucc.asn.au>
date Thu, 15 Oct 2020 19:55:15 +0800
parents 1051e4eea25a
children
comparison
equal deleted inserted replaced
1562:768ebf737aa0 1739:13d834efc376
1 XXX, 2017 1 XXX XXth, 2019
2 v1.2.0
3 -- A huge refactoring of the library happened - renaming,
4 deprecating and replacing existing functions by improved API's.
5
6 All deprecated functions, macros and symbols are only marked as such
7 so this version is still API and ABI compatible to v1.x.
8
9 -- Daniel Mendler was pushing for those changes and contributing a load of patches,
10 refactorings, code reviews and whatnotelse.
11 -- Christoph Zurnieden re-worked internals of the library, improved the performance,
12 did code reviews and wrote documentation.
13 -- Francois Perrad did some refactoring and took again care of linting the sources and
14 provided all fixes.
15 -- Jan Nijtmans, Karel Miko and Joachim Breitner contributed various patches.
16
17 -- Private symbols can now be hidden for the shared library builds, disabled by default.
18 -- All API's follow a single code style, are prefixed the same etc.
19 -- Unified, safer and improved API's
20 -- Less magic numbers - return values (where appropriate) and most flags are now enums,
21 this was implemented in a backwards compatible way where return values were int.
22 -- API's with return values are now by default marked as "warn on unsused result", this
23 can be disabled if required (which will most likely hide bugs), c.f. MP_WUR in tommath.h
24 -- Provide a whole set of setters&getters for different primitive types (long, uint32_t, etc.)
25 -- All those primitive setters are now optimized.
26 -- It's possible to automatically tune the cutoff values for Karatsuba&Toom-Cook
27 -- The custom allocators which were formerly known as XMALLOC(), XFREE() etc. are now available
28 as MP_MALLOC(), MP_REALLOC(), MP_CALLOC() and MP_FREE(). MP_REALLOC() and MP_FREE() now also
29 provide the allocated size to ease the usage of simple allocators without tracking.
30 -- Building is now also possible with MSVC 2015, 2017 and 2019 (use makefile.msvc)
31 -- Added mp_decr() and mp_incr()
32 -- Added mp_log_u32()
33 -- Improved prime-checking
34 -- Improved Toom-Cook multiplication
35 -- Removed the LTM book (`make docs` now builds the user manual)
36
37
38 Jan 28th, 2019
39 v1.1.0
40 -- Christoph Zurnieden contributed FIPS 186.4 compliant
41 prime-checking (PR #113), several other fixes and a load of documentation
42 -- Daniel Mendler provided two's-complement functions (PR #124)
43 and mp_{set,get}_double() (PR #123)
44 -- Francois Perrad took care of linting the sources, provided all fixes and
45 a astylerc to auto-format the sources.
46 -- A bunch of patches by Kevin B Kenny have been back-ported from TCL
47 -- Jan Nijtmans provided the patches to `const`ify all API
48 function arguments (also from TCL)
49 -- mp_rand() has now several native random provider implementations
50 and doesn't rely on `rand()` anymore
51 -- Karel Miko provided fixes when building for MS Windows
52 and re-worked the makefile generating process
53 -- The entire environment and build logic has been extended and improved
54 regarding auto-detection of platforms, libtool and a lot more
55 -- Prevent some potential BOF cases
56 -- Improved/fixed mp_lshd() and mp_invmod()
57 -- A load more bugs were fixed by various contributors
58
59
60 Aug 29th, 2017
2 v1.0.1 61 v1.0.1
3 -- Dmitry Kovalenko provided fixes to mp_add_d() and mp_init_copy() 62 -- Dmitry Kovalenko provided fixes to mp_add_d() and mp_init_copy()
4 -- Matt Johnston contributed some improvements to mp_div_2d(), 63 -- Matt Johnston contributed some improvements to mp_div_2d(),
5 mp_exptmod_fast(), mp_mod() and mp_mulmod() 64 mp_exptmod_fast(), mp_mod() and mp_mulmod()
6 -- Julien Nabet provided a fix to the error handling in mp_init_multi() 65 -- Julien Nabet provided a fix to the error handling in mp_init_multi()