aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Chia <terrycwk1994@gmail.com>2015-08-30 11:09:22 +0800
committerTerry Chia <terrycwk1994@gmail.com>2015-08-30 11:09:22 +0800
commitb1903b0d4caaac29f78b7421704caf01255b3c13 (patch)
tree406729f93404de181f8c4cbecdb1bff1d20180be
parent7126e61fc31d9684314c3749f4b552f6d43e39fc (diff)
downloadcryptography-b1903b0d4caaac29f78b7421704caf01255b3c13.tar.gz
cryptography-b1903b0d4caaac29f78b7421704caf01255b3c13.tar.bz2
cryptography-b1903b0d4caaac29f78b7421704caf01255b3c13.zip
Mention bcrypt and scrypt.
-rw-r--r--docs/fernet.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst
index 18aab439..a066ae63 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -112,7 +112,8 @@ Using passwords with Fernet
It is possible to use passwords with Fernet. To do this, you need to run the
password through a key derivation function such as
-:class:`~cryptography.hazmat.primitives.kdf.pbkdf2.PBKDF2HMAC`:
+:class:`~cryptography.hazmat.primitives.kdf.pbkdf2.PBKDF2HMAC`, bcrypt or
+scrypt.
.. code-block:: python