aboutsummaryrefslogtreecommitdiffstats
path: root/news.rst
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-08 13:23:20 -0400
committerJack Lloyd <[email protected]>2017-09-08 13:23:20 -0400
commita0273956a678b90bbd70da083b6cdafb2d9d6558 (patch)
tree498e8708692ee8bb9ad44d053ec0bad5a2e86ea7 /news.rst
parent762b0f890737d38837973013c5c1ecf1a85d5331 (diff)
Update news
[ci skip]
Diffstat (limited to 'news.rst')
-rw-r--r--news.rst22
1 files changed, 22 insertions, 0 deletions
diff --git a/news.rst b/news.rst
index 118342218..8cafaaeaf 100644
--- a/news.rst
+++ b/news.rst
@@ -19,6 +19,20 @@ Version 2.3.0, Not Yet Released
* Added support for the ECDHE_PSK AEAD TLS ciphersuites from
draft-ietf-tls-ecdhe-psk-aead-05.
+* SM2 encryption and signature schemes were previously hardcoded to use SM3
+ hash, now any hash is allowed. (GH #1188)
+
+* XTS mode now supports 256-bit and 512-bit block ciphers.
+
+* Add ids to allow SHA-3 signatures with PKCSv1.5 (GH #1184)
+
+* The entropy source that called CryptGenRandom has been removed, and
+ replaced by a version which invokes the system PRNG, which may
+ be CryptGenRandom or some other source. (GH #1180)
+
+* Add support for gathering entropy using the Crypt-NG BCryptGenRandom
+ API. This is necessary to build for Windows Phone/Windows Store. (GH #1180)
+
* Extend "Raw" signature padding (which allows signing a hash computed
externally) to optionally take a hash function name. In this case, it will be
verified that the input matches the expected hash size. This also will
@@ -46,6 +60,12 @@ Version 2.3.0, Not Yet Released
* Improve support for Windows Phone (GH #1180 #796 #794)
+* Correct return value of botan_pk_op_verify_finish, in 2.2.0 it returned
+ -1 on invalid signature instead of 1 which was used in 2.0, 2.1, and now
+ again in 2.3. (GH #1189 #1187)
+
+* Allow loading unencrypted private keys via FFI API (GH #1197)
+
* Add new command line options `--rng-type=drbg` and `--drbg-seed` which
allow running commands with a deterministic RNG. (GH #1169)
@@ -68,6 +88,8 @@ Version 2.3.0, Not Yet Released
easier to replicate the behavior of the CI build locally. Also a number
of changes were made to improve the turnaround time of CI builds. (GH #1162)
+* Added a script to automate running TLS-Attacker tests.
+
* Fix a bug in FFI tests that caused the test files not to be found when using
`--data-dir` option (GH #1149)