From 4e87cf4529ea374ddaf91152c89b409661086ddc Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 21 Jan 2017 08:50:53 -0500 Subject: Removed dead link from docs (#3360) --- docs/fernet.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/fernet.rst b/docs/fernet.rst index a2bab32a..0c1eb43d 100644 --- a/docs/fernet.rst +++ b/docs/fernet.rst @@ -113,7 +113,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 such as :class:`~cryptography.hazmat.primitives.kdf.pbkdf2.PBKDF2HMAC`, bcrypt or -scrypt. +:class:`~cryptography.hazmat.primitives.kdf.scrypt.Scrypt`. .. doctest:: @@ -145,7 +145,7 @@ to derive the same key from the password in the future. The iteration count used should be adjusted to be as high as your server can tolerate. A good default is at least 100,000 iterations which is what Django -`recommends`_ in 2014. +recommended in 2014. Implementation -------------- @@ -166,4 +166,3 @@ For complete details consult the `specification`_. .. _`Fernet`: https://github.com/fernet/spec/ .. _`specification`: https://github.com/fernet/spec/blob/master/Spec.md -.. _`recommends`: https://github.com/django/django/blob/master/django/utils/crypto.py#L148 -- cgit v1.2.3