summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-01-19 05:11:48 +0000
committerEli Collins <elic@assurancetechnologies.com>2011-01-19 05:11:48 +0000
commitfd47a3c90c0960d11f16c9ad808ec3f543fed01e (patch)
tree1ddfe97d6c009c17a745cf0cefa24960875cecb9 /docs
parent7790935a93c8d86629d65e205af4e45d6ef59897 (diff)
downloadpasslib-fd47a3c90c0960d11f16c9ad808ec3f543fed01e.tar.gz
bugfixin'
========= * bumped to 1.3 * refactored UTs a little bit * updated UTs to match new layout & protocols * lots of bug fixes * all UTs pass
Diffstat (limited to 'docs')
-rw-r--r--docs/history.rst2
-rw-r--r--docs/lib/passlib.hash/algorithms.rst2
-rw-r--r--docs/lib/passlib.hash/implementation.rst6
-rw-r--r--docs/lib/passlib.hash/utils.rst2
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/history.rst b/docs/history.rst
index fe6c4dd..9a6e9bd 100644
--- a/docs/history.rst
+++ b/docs/history.rst
@@ -13,7 +13,7 @@ Release History
* added password generation helpers
2008-10-02 -- version 0.6
- * CryptContext & CryptAlgorithm framework
+ * CryptContext & CryptHandler framework
* added unit tests
* added Unix-Crypt support and pure-python fallback
diff --git a/docs/lib/passlib.hash/algorithms.rst b/docs/lib/passlib.hash/algorithms.rst
index acb28f5..4c00293 100644
--- a/docs/lib/passlib.hash/algorithms.rst
+++ b/docs/lib/passlib.hash/algorithms.rst
@@ -4,7 +4,7 @@
.. currentmodule:: passlib
-All of the crypt algorithms must inherit from :class:`CryptAlgorithm`,
+All of the crypt algorithms must inherit from :class:`CryptHandler`,
which defines a common interface all algorithms must support.
You may use the algorithms directly, by creating
an instance and calling it as described in :doc:`Implementing a Crypt Algorithm <implementation>`.
diff --git a/docs/lib/passlib.hash/implementation.rst b/docs/lib/passlib.hash/implementation.rst
index 4ea6e24..d80ac56 100644
--- a/docs/lib/passlib.hash/implementation.rst
+++ b/docs/lib/passlib.hash/implementation.rst
@@ -5,13 +5,13 @@
.. currentmodule:: passlib
New password algorithms can be implemented
-by subclassing :class:`CryptAlgorithm`,
+by subclassing :class:`CryptHandler`,
which provides the underlying framework used
for all the password algorithms.
To create a new one,
-you simple subclass CryptAlgorithm,
+you simple subclass CryptHandler,
and implement the identify, encrypt, and verify methods
(at the very least).
-.. autoclass:: CryptAlgorithm
+.. autoclass:: CryptHandler
diff --git a/docs/lib/passlib.hash/utils.rst b/docs/lib/passlib.hash/utils.rst
index 4da7d54..752e381 100644
--- a/docs/lib/passlib.hash/utils.rst
+++ b/docs/lib/passlib.hash/utils.rst
@@ -16,4 +16,4 @@ of the standard unix hash algorithms.
.. autofunction:: h64_gen_salt
.. autofunction:: is_crypt_context
-.. autofunction:: is_crypt_alg
+.. autofunction:: is_crypt_handler