]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
link to wikipedia description of cryptographic salt
authorBenjamin Peterson <benjamin@python.org>
Mon, 26 May 2014 22:42:29 +0000 (15:42 -0700)
committerBenjamin Peterson <benjamin@python.org>
Mon, 26 May 2014 22:42:29 +0000 (15:42 -0700)
Doc/library/hashlib.rst

index 661338e0e14f33dae32d6d4d7c20e68aa7cafe91..cc982f6318298df8d2ad9c828a135f0f94188088 100644 (file)
@@ -182,7 +182,7 @@ Key Derivation Function
 Key derivation and key stretching algorithms are designed for secure password
 hashing. Naive algorithms such as ``sha1(password)`` are not resistant against
 brute-force attacks. A good password hashing function must be tunable, slow, and
-include a salt.
+include a `salt <https://en.wikipedia.org/wiki/Salt_%28cryptography%29>`_.
 
 
 .. function:: pbkdf2_hmac(name, password, salt, rounds, dklen=None)