aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-10-18 08:47:15 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-10-18 20:47:15 +0800
commit1c186772f6fd64180bd3387de2e1ef1a6d1ba58e (patch)
treea3a95a96a5e4b21d80d0529df79d5d4a71070082 /docs
parenta1307a1f34e4f6f8f124cde92ec53c4cd0580078 (diff)
downloadcryptography-1c186772f6fd64180bd3387de2e1ef1a6d1ba58e.tar.gz
cryptography-1c186772f6fd64180bd3387de2e1ef1a6d1ba58e.tar.bz2
cryptography-1c186772f6fd64180bd3387de2e1ef1a6d1ba58e.zip
Fixes #5018 -- break users on OpenSSL 1.0.1 (#5022)
* Fixes #5018 -- break users on OpenSSL 1.0.1 * Grammar * Syntax error * Missing import * Missing import
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.rst13
-rw-r--r--docs/installation.rst4
2 files changed, 15 insertions, 2 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 6d876610..235da672 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -82,6 +82,19 @@ Your ``pip`` and/or ``setuptools`` are outdated. Please upgrade to the latest
versions with ``pip install -U pip setuptools`` (or on Windows
``python -m pip install -U pip setuptools``).
+Importing cryptography causes a ``RuntimeError`` about OpenSSL 1.0.1
+--------------------------------------------------------------------
+
+The OpenSSL project has dropped support for the 1.0.1 release series. Since it
+is no longer receiving security patches from upstream, ``cryptography`` is also
+dropping support for it. To fix this issue you should upgrade to a newer
+version of OpenSSL (1.0.2 or later). This may require you to upgrade to a newer
+operating system.
+
+For the 2.9 release, you can set the ``CRYPTOGRAPHY_ALLOW_OPENSSL_101``
+environment variable. Please note that this is *temporary* and will be removed
+in ``cryptography`` 3.0.
+
Installing cryptography with OpenSSL 0.9.8 or 1.0.0 fails
---------------------------------------------------------
diff --git a/docs/installation.rst b/docs/installation.rst
index 2c83f33a..fc3fa894 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -32,8 +32,8 @@ OpenSSL releases:
* ``OpenSSL 1.1.1-latest``
.. warning::
- OpenSSL 1.0.1 is no longer supported by the OpenSSL project. Cryptography
- will drop support for it in the next release.
+ Cryptography 2.9 has dropped support for OpenSSL 1.0.1, see the
+ :doc:`FAQ </faq>` for more details
Building cryptography on Windows
--------------------------------