summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-10-14 13:03:03 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-10-19 11:09:00 +0200
commit750a74ed9c8061681dba26ffc779c81b391b7718 (patch)
tree396b24842536ed48be7175ae63755c2fd6f3fbc0 /NEWS
parenta4c1a43a5b855c9331c1a08074056df3309660ab (diff)
downloadphp-git-750a74ed9c8061681dba26ffc779c81b391b7718.tar.gz
Fix bug #79983: Add support for OCB mode
OCB mode ciphers were already exposed to openssl_encrypt/decrypt, but misbehaved, because they were not treated as AEAD ciphers. From that perspective, OCB should be treated the same way as GCM. In OpenSSL 1.1 the necessary controls were unified under EVP_CTRL_AEAD_* (and OCB is only supported since OpenSSL 1.1). Closes GH-6337.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 2202f04b39..e5e20b0e5c 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,10 @@ PHP NEWS
. Fixed bug #64076 (imap_sort() does not return FALSE on failure). (cmb)
. Fixed bug #80239 (imap_rfc822_write_address() leaks memory). (cmb)
+- OpenSSL:
+ . Fixed bug #79983 (openssl_encrypt / openssl_decrypt fail with OCB mode).
+ (Nikita)
+
29 Oct 2020, PHP 7.4.12
- Core: