summaryrefslogtreecommitdiff
path: root/docs/lib
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-02-14 14:40:26 -0500
committerEli Collins <elic@assurancetechnologies.com>2011-02-14 14:40:26 -0500
commit2ed71b1442f20ec5b2bba1a88d73bd0480ec04b4 (patch)
treee4bddb6b1687fa47c55b3e469a7f42e0e1371c2f /docs/lib
parent60557f422b8c4836fcd2f89ad9a21babca23e52f (diff)
downloadpasslib-2ed71b1442f20ec5b2bba1a88d73bd0480ec04b4.tar.gz
cleanups
======== * removed from utils since they're not used: norm_salt, norm_rounds, gen_salt * commented out from utils since they're not used: abstractmethod, abstractclassmethod, memoized_class_property * removed passlib.hash.__skel - no longer used * rearranged utils.handlers: - all handler helper classes now inherit from eachother - BaseHandler (renamed from WrappedHandler) - ExtHandler (inherits from BaseHandler, was previously the one named BaseHandler) - StaticHandler (inherits from ExtHandler, renamed from PlainHandler) * converted test_handler classes to use ExtHandler & StaticHandler
Diffstat (limited to 'docs/lib')
-rw-r--r--docs/lib/passlib.utils.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/lib/passlib.utils.rst b/docs/lib/passlib.utils.rst
index 0d6d809..5d7d067 100644
--- a/docs/lib/passlib.utils.rst
+++ b/docs/lib/passlib.utils.rst
@@ -12,8 +12,6 @@ They may also be useful when implementing custom handlers for existing legacy fo
Decorators
==========
.. autofunction:: classproperty
-.. autofunction:: abstractmethod
-.. autofunction:: abstractclassmethod
String Manipulation
===================
@@ -46,17 +44,6 @@ Object Tests
.. autofunction:: is_crypt_context
-Crypt Handler Helpers
-=====================
-The following functions are used by passlib to do input validation
-for many of the implemented password schemes:
-
-.. autofunction:: norm_rounds
-
-.. autofunction:: gen_salt(salt, charset=H64_CHARS)
-
-.. autofunction:: norm_salt(salt, min_chars, max_chars=None, charset=H64_CHARS, gen_charset=None, name=None)
-
Submodules
==========
There are also a few sub modules which provide additional utility functions: