summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-04-19 13:36:52 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-04-19 13:36:52 -0700
commitf68f3b5526db620fd815589312c453c8a83962b1 (patch)
tree3c662d7014da1bd8c711bb59ed214784e36f3f5f
parent283cb267ac2ee2967f14bd9c78a1addb47c26343 (diff)
downloadparamiko-f68f3b5526db620fd815589312c453c8a83962b1.tar.gz
Add explicit mention of bcrypt and pynacl to 2.x installation docs.
Re #1191
-rw-r--r--sites/www/installing.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/sites/www/installing.rst b/sites/www/installing.rst
index e6db2dca..524bd89c 100644
--- a/sites/www/installing.rst
+++ b/sites/www/installing.rst
@@ -22,8 +22,12 @@ via `pip <http://pip-installer.org>`_::
We currently support **Python 2.7, 3.4+, and PyPy**. Users on Python 2.6 or
older (or 3.3 or older) are urged to upgrade.
-Paramiko has only one direct hard dependency: the Cryptography library. See
-:ref:`cryptography`.
+Paramiko has only a few direct dependencies:
+
+- The big one, with its own sub-dependencies, is Cryptography; see :ref:`its
+ specific note below <cryptography>` for more details.
+- `bcrypt <https://pypi.org/project/bcrypt/>`_, for Ed25519 key support;
+- `pynacl <https://pypi.org/project/PyNaCl/>`_, also for Ed25519 key support.
If you need GSS-API / SSPI support, see :ref:`the below subsection on it
<gssapi>` for details on its optional dependencies.