diff options
author | Jack Lloyd <[email protected]> | 2016-09-17 07:21:42 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-09-17 07:21:42 -0400 |
commit | 2b7f2d52d032ad56526d38e7f65bd966ac59325a (patch) | |
tree | faed46aaae836e44e972a4e6d5bdea06b0729034 | |
parent | 4266b51c35d7c0e86f513030ae4a5b28fdb9b824 (diff) |
Add a relnote
[ci skip]
-rw-r--r-- | doc/news.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/news.rst b/doc/news.rst index fce6bfee8..012ad81fa 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -20,6 +20,22 @@ Version 1.11.32, Not Yet Released * Add a new TLS Callbacks interface. Compatability with previous versions is maintained. The documentation has been updated accordingly. GH #457 and #567 +* How the library presents optimized algorithm implementations has changed. For + example with the algorithm AES-128, previously there were three BlockCipher + classes AES_128, AES_128_SSSE3, and AES_128_NI which used (resp) a table-based + implementation vulnerable to side channels, a constant time version using + SSSE3 SIMD extensions on modern x86, and x86 AES-NI instructions. Using the + correct version at runtime required using `BlockCipher::create`. Now, only the + class AES_128 is presented, and the best available version is always used + based on CPUID checks. The tests have been extended to selectively disable + CPUID bits to ensure all available versions are tested. + + Removes API classes AES_128_NI, AES_192_NI, AES_256_NI, AES_128_SSSE3, + AES_192_SSSE3 AES_256_SSSE3, IDEA_SSE2, Noekeon_SIMD, Serpent_SIMD, + Threefish_512_AVX2, SHA_160_SSE2 + + GH #477 #623 + * The deprecated algorithms Rabin-Williams, Nyberg-Rueppel, MARS, RC2, RC5, RC6, SAFER-SK, TEA, MD2, HAS-160, and RIPEMD-128 have been removed. GH #580 |