aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-05-22 22:40:23 -0400
committerJack Lloyd <[email protected]>2017-05-22 22:40:23 -0400
commit51abe0773f6e96f19500ab6e6c25464e3ef8122f (patch)
tree92a02a506fc617efd7cfe45c2418e87e8afa940e
parentcb91be3967edab3688b744e150a98d96db89b2fd (diff)
Update news
[ci skip]
-rw-r--r--news.rst24
1 files changed, 23 insertions, 1 deletions
diff --git a/news.rst b/news.rst
index 90933bbb2..39c43b2b7 100644
--- a/news.rst
+++ b/news.rst
@@ -4,7 +4,27 @@ Release Notes
Version 2.2.0, Not Yet Released
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-* Add the SM3 hash function
+* Add the SM3 hash function (GH #996)
+
+* Add support for SHA-1 and SHA-2 instructions added in Intel Goldmont
+ (GH #826)
+
+* Add support for SHA-1 and SHA-2 instructions added in ARMv8 (GH #844)
+
+* Add support for HOTP (RFC 4226) and TOTP (RFC 6238)
+ one-time-password algorithms (GH #1054)
+
+* Add HashFunction::copy_state which allows efficiently computing the
+ hash of several messages with a common prefix (GH #1056 #1037)
+
+* The OpenSSL backend now supports the 1.1.0 API (GH #1056)
+
+* Fix a bug in certificate path length checking that could cause valid
+ chains to be rejected. (GH #1053)
+
+* It is possible for CBC, CFB, and stream ciphers to carry over the
+ nonce from the previous message, which is needed by some applications.
+ This worked in 1.10 but broke in 2.0. (GH #1044 fixing GH #864)
* Avoid recursion in BER_Decoder::get_next_object which could cause
stack exhaustion. (GH #989)
@@ -22,6 +42,8 @@ Version 2.2.0, Not Yet Released
* Add `hmac` command line util (GH #1001)
+* Add `encryption` command line util (GH #359)
+
* Add `hex_enc` and `hex_dec` command line utils
* Fix return value of FFI botan_bcrypt_is_valid (GH #1033)