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])