From 1aa9dca20cd9485c8bcef2ecfdd05d407ae9edb7 Mon Sep 17 00:00:00 2001 From: Helder Eijs Date: Mon, 25 Dec 2023 01:10:02 +0100 Subject: [PATCH] Update changelog and bump version --- Changelog.rst | 8 ++++++++ lib/Crypto/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changelog.rst b/Changelog.rst index 057a5544..cdc5ae31 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +Under development +++++++++++++++++++++++++++ + +Resolved issues +--------------- +* Fixed a side-channel leakage with OAEP decryption that could be + exploited for a Manger's attack. Thanks to Hubert Kario. + 3.19.0 (16 September 2023) ++++++++++++++++++++++++++ diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py index 773db588..33a6205f 100644 --- a/lib/Crypto/__init__.py +++ b/lib/Crypto/__init__.py @@ -1,6 +1,6 @@ __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature', 'IO', 'Math'] -version_info = (3, 19, '0') +version_info = (3, 19, '1b0') __version__ = ".".join([str(x) for x in version_info])