summaryrefslogtreecommitdiff
path: root/passlib/handlers/digests.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/handlers/digests.py')
-rw-r--r--passlib/handlers/digests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/passlib/handlers/digests.py b/passlib/handlers/digests.py
index f1a21bd..dd8400c 100644
--- a/passlib/handlers/digests.py
+++ b/passlib/handlers/digests.py
@@ -24,10 +24,10 @@ __all__ = [
]
#=============================================================================
-# helpers for hexidecimal hashes
+# helpers for hexadecimal hashes
#=============================================================================
class HexDigestHash(uh.StaticHandler):
- "this provides a template for supporting passwords stored as plain hexidecimal hashes"
+ "this provides a template for supporting passwords stored as plain hexadecimal hashes"
#===================================================================
# class attrs
#===================================================================
@@ -60,7 +60,7 @@ def create_hex_hash(hash, digest_name, module=__name__):
__module__=module, # so ABCMeta won't clobber it
_hash_func=staticmethod(hash), # sometimes it's a function, sometimes not. so wrap it.
checksum_size=h.digest_size*2,
- __doc__="""This class implements a plain hexidecimal %s hash, and follows the :ref:`password-hash-api`.
+ __doc__="""This class implements a plain hexadecimal %s hash, and follows the :ref:`password-hash-api`.
It supports no optional or contextual keywords.
""" % (digest_name,)