summaryrefslogtreecommitdiff
path: root/django/utils/crypto.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-04-17 11:04:57 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-04-17 11:04:57 -0700
commit21a1fddcc417c8af2f97d55fb83f645d8f3b5a19 (patch)
tree56130f6a330dbb5a66ec2c523f845ea4e90ce702 /django/utils/crypto.py
parentcb68eb3e6dd740185734ffcbc4e287860fcc118d (diff)
Typo fix
Diffstat (limited to 'django/utils/crypto.py')
-rw-r--r--django/utils/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/crypto.py b/django/utils/crypto.py
index c70f9bbdeb..d02ee5351d 100644
--- a/django/utils/crypto.py
+++ b/django/utils/crypto.py
@@ -120,8 +120,8 @@ def _long_to_bin(x, hex_format_string):
if hasattr(hashlib, "pbkdf2_hmac"):
def pbkdf2(password, salt, iterations, dklen=0, digest=None):
"""
- Implements PBDF2 with the same API as Django's existing implementation,
- using the stdlib.
+ Implements PBKDF2 with the same API as Django's existing
+ implementation, using the stdlib.
This is used in Python 3.4 and up.
"""