diff options
author | Jack Lloyd <[email protected]> | 2015-07-02 07:23:29 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-07-02 07:23:29 -0400 |
commit | f3180d6ef7025146ff8ea8c9fed2d0b40cab96f9 (patch) | |
tree | 21c280b7b448f88a42f3cedebf28b4488f4af479 /doc/relnotes/1_11_16.rst | |
parent | 2c4a8aa78a3cb40a3a5ab7a902db2a55e4d33388 (diff) |
Combine all release notes into a single file, just easier to read.
Which when you think about it is the main criteria on which to judge
release notes, right? No text changes beyond removing Sphinx interdoc
links and the :pr: extlinks to Bugzilla.
Remove combine_relnotes.py as this was its last run. The setup for
the website is very broken as a result of this change, that comes next.
Diffstat (limited to 'doc/relnotes/1_11_16.rst')
-rw-r--r-- | doc/relnotes/1_11_16.rst | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/doc/relnotes/1_11_16.rst b/doc/relnotes/1_11_16.rst deleted file mode 100644 index c27e5a204..000000000 --- a/doc/relnotes/1_11_16.rst +++ /dev/null @@ -1,38 +0,0 @@ -Version 1.11.16, 2015-03-29 -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -* TLS has changed from using the non-standard NPN extension to the IETF - standardized ALPN extension for negotiating an application-level protocol. - Unfortunately the semantics of the exchange have changed with ALPN. Using - NPN, the server offered a list of protocols it advertised, and then the - client chose its favorite. With ALPN, the client offers a list of protocols - and the server chooses. The the signatures of both the TLS::Client and - TLS::Server constructors have changed to support this new flow. - -* Optimized ECDSA signature verification thanks to an observation by - Dr. Falko Strenzke. On some systems verifications are between 1.5 - and 2 times faster than in 1.11.15. - -* RSA encrypt and decrypt operations using OpenSSL have been added. - -* Public key operation types now handle all aspects of the operation, - such as hashing and padding for signatures. This change allows - supporting specialized implementations which only support particular - padding types. - -* Added global timeout to HMAC_RNG entropy reseed. The defaults are - the values set in the build.h macros `BOTAN_RNG_AUTO_RESEED_TIMEOUT` - and `BOTAN_RNG_RESEED_DEFAULT_TIMEOUT`, but can be overriden - on a specific poll with the new API call reseed_with_timeout. - -* Fixed Python cipher update_granularity() and default_nonce_length() - functions - -* The library now builds on Visual C++ 2013 - -* The GCM update granularity was reduced from 4096 to 16 bytes. - -* Fix a bug that prevented building the amalgamation until a non-amalgamation - configuration was performed first in the same directory. - -* Add Travis CI integration. Github pull 60. |