diff options
author | Jack Lloyd <[email protected]> | 2019-03-22 09:25:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-03-22 09:25:52 -0400 |
commit | e65a22621f6bc2ee7eac4fc8c0399f341a77a79e (patch) | |
tree | 0d2d190f62edcdeac1a9ce7bc6ea9db801fa32a9 | |
parent | 699df049c0b1f105a9913b20ef3a6894f62be980 (diff) |
Update news
-rw-r--r-- | news.rst | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -23,7 +23,7 @@ Version 2.10.0, Not Yet Released * Unroll SHA-3 computation improving performance by 10-12% (GH #1838) * Add a ``Thread_Pool`` class. It is now possible to run the tests in multiple - threads with `--test-threads=N`` flag to select the number of threads to use. + threads with ``--test-threads=N`` flag to select the number of threads to use. Use ``--test-threads=0`` to run with as many CPU cores as are available on the current system. The default remains single threaded. (GH #1819) @@ -64,6 +64,22 @@ Version 2.10.0, Not Yet Released * Add ``base58_enc`` and ``base58_dec`` cli utils for base58 encoding/decoding. (GH #1848) +* Avoid using ``-momit-leaf-frame-pointer`` flags, since ``-fomit-frame-pointer`` + is already the default with recent versions of GCC. + +* Fix XLC sanitizer flags. + +* Rename ``Blake2b`` class to ``BLAKE2b`` to match the official name. There is + a typedef for compat. + +* Fix a bug where loading a raw ``Ed25519_PublicKey`` of incorrect length would + lead to a crash. (GH #1850) + +* Fix a bug that caused compilation problems using CryptoNG PRNG. (GH #1832) + +* Extended SHAKE-128 cipher to support any key between 1 and 160 bytes, instead + of only multiples of 8 bytes. + * Minor HMAC optimizations. * Build fixes for GNU/Hurd. |