From e43cd548c19053f9de6acea0b36a24f000d7d356 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 15 Jun 2019 16:49:40 -0400 Subject: [PATCH] Refs #4923; deprecate OpenSSL 1.0.1 --- docs/installation.rst | 4 ++-- src/cryptography/hazmat/bindings/openssl/binding.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 7118cb1ea3e3..2c83f33a9dfe 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -32,8 +32,8 @@ OpenSSL releases: * ``OpenSSL 1.1.1-latest`` .. warning:: - Cryptography 2.4 has deprecated support for OpenSSL 1.0.1. - + OpenSSL 1.0.1 is no longer supported by the OpenSSL project. Cryptography + will drop support for it in the next release. Building cryptography on Windows -------------------------------- diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py index ca4e33fa586f..974051621892 100644 --- a/src/cryptography/hazmat/bindings/openssl/binding.py +++ b/src/cryptography/hazmat/bindings/openssl/binding.py @@ -158,7 +158,7 @@ def _verify_openssl_version(lib): ): warnings.warn( "OpenSSL version 1.0.1 is no longer supported by the OpenSSL " - "project, please upgrade. A future version of cryptography will " + "project, please upgrade. The next version of cryptography will " "drop support for it.", utils.CryptographyDeprecationWarning )