diff options
author | Terry Chia <terrycwk1994@gmail.com> | 2015-08-29 19:08:39 +0800 |
---|---|---|
committer | Terry Chia <terrycwk1994@gmail.com> | 2015-08-29 19:08:39 +0800 |
commit | d9f8bfaaa8c0f416a468e47e7b494661b30f42c8 (patch) | |
tree | c44f393c48630d03b7e8bad74cbaf7eb1aa757c7 /docs/fernet.rst | |
parent | 1ef3aa3ea3bfe10f234aa4292d6f65d76c89b192 (diff) | |
download | cryptography-d9f8bfaaa8c0f416a468e47e7b494661b30f42c8.tar.gz cryptography-d9f8bfaaa8c0f416a468e47e7b494661b30f42c8.tar.bz2 cryptography-d9f8bfaaa8c0f416a468e47e7b494661b30f42c8.zip |
Fixed PBKDF2 class target.
Diffstat (limited to 'docs/fernet.rst')
-rw-r--r-- | docs/fernet.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst index 1cea0a7a..d4a7d284 100644 --- a/docs/fernet.rst +++ b/docs/fernet.rst @@ -112,7 +112,7 @@ 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 like -:class:`~cryptography.hazmat.primitives.kdf.PBKDF2`: +:class:`~cryptography.hazmat.primitives.kdf.pbkdf2.PBKDF2HMAC`: .. code-block:: python |