summaryrefslogtreecommitdiff
path: root/passlib/handlers
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/handlers')
-rw-r--r--passlib/handlers/cisco.py2
-rw-r--r--passlib/handlers/oracle.py2
-rw-r--r--passlib/handlers/postgres.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/passlib/handlers/cisco.py b/passlib/handlers/cisco.py
index 956a060..3bc90a7 100644
--- a/passlib/handlers/cisco.py
+++ b/passlib/handlers/cisco.py
@@ -26,7 +26,7 @@ __all__ = [
class cisco_pix(uh.HasUserContext, uh.StaticHandler):
"""This class implements the password hash used by Cisco PIX firewalls,
and follows the :ref:`password-hash-api`.
- It has a single round, and relies on the username
+ It does a single round of hashing, and relies on the username
as the salt.
The :meth:`~passlib.ifc.PasswordHash.encrypt`, :meth:`~passlib.ifc.PasswordHash.genhash`, and :meth:`~passlib.ifc.PasswordHash.verify` methods
diff --git a/passlib/handlers/oracle.py b/passlib/handlers/oracle.py
index 7c028be..08850f0 100644
--- a/passlib/handlers/oracle.py
+++ b/passlib/handlers/oracle.py
@@ -54,7 +54,7 @@ ORACLE10_MAGIC = b("\x01\x23\x45\x67\x89\xAB\xCD\xEF")
class oracle10(uh.HasUserContext, uh.StaticHandler):
"""This class implements the password hash used by Oracle up to version 10g, and follows the :ref:`password-hash-api`.
- It has no salt and a single fixed round.
+ It does a single round of hashing, and relies on the username as the salt.
The :meth:`~passlib.ifc.PasswordHash.encrypt`, :meth:`~passlib.ifc.PasswordHash.genhash`, and :meth:`~passlib.ifc.PasswordHash.verify` methods all require the
following additional contextual keywords:
diff --git a/passlib/handlers/postgres.py b/passlib/handlers/postgres.py
index bb555ec..1324d83 100644
--- a/passlib/handlers/postgres.py
+++ b/passlib/handlers/postgres.py
@@ -24,7 +24,7 @@ __all__ = [
class postgres_md5(uh.HasUserContext, uh.StaticHandler):
"""This class implements the Postgres MD5 Password hash, and follows the :ref:`password-hash-api`.
- It has no salt and a single fixed round.
+ It does a single round of hashing, and relies on the username as the salt.
The :meth:`~passlib.ifc.PasswordHash.encrypt`, :meth:`~passlib.ifc.PasswordHash.genhash`, and :meth:`~passlib.ifc.PasswordHash.verify` methods all require the
following additional contextual keywords: