summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-02-20 16:37:03 -0500
committerSimon Charette <charette.s@gmail.com>2015-02-20 16:37:29 -0500
commit19f7278c86b16be442301fc6935b78f3a71abbcd (patch)
treec94d5109b9843e327b9848856ee422f525743c72
parent51b606f75d3662cf6736ade400d6423cb519968b (diff)
Removed reference to iteration count in the PBKDF2 hasher docstring.
-rw-r--r--django/contrib/auth/hashers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/hashers.py b/django/contrib/auth/hashers.py
index 9aac881643..b56f74f0d9 100644
--- a/django/contrib/auth/hashers.py
+++ b/django/contrib/auth/hashers.py
@@ -221,7 +221,7 @@ class PBKDF2PasswordHasher(BasePasswordHasher):
"""
Secure password hashing using the PBKDF2 algorithm (recommended)
- Configured to use PBKDF2 + HMAC + SHA256 with 24000 iterations.
+ Configured to use PBKDF2 + HMAC + SHA256.
The result is a 64 byte binary string. Iterations may be changed
safely but you must rename the algorithm if you change SHA256.
"""