summaryrefslogtreecommitdiff
path: root/docs/lib/passlib.context-options.rst
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-04-29 00:08:17 -0400
committerEli Collins <elic@assurancetechnologies.com>2011-04-29 00:08:17 -0400
commitc8d8eb0d9b1c753d342307b070fb1ad09cc351a6 (patch)
tree491d6e0b3136edee39bc2001331eb4ed09a38afd /docs/lib/passlib.context-options.rst
parentbc98bc9188ed66d78ad3864443432690745da585 (diff)
downloadpasslib-c8d8eb0d9b1c753d342307b070fb1ad09cc351a6.tar.gz
large rework of documentation; mainly to give more room to LDAP hashes, and document ldap CRYPT hashes
Diffstat (limited to 'docs/lib/passlib.context-options.rst')
-rw-r--r--docs/lib/passlib.context-options.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/lib/passlib.context-options.rst b/docs/lib/passlib.context-options.rst
index e799cdf..8a6a19e 100644
--- a/docs/lib/passlib.context-options.rst
+++ b/docs/lib/passlib.context-options.rst
@@ -34,7 +34,9 @@ of the :class:`!CryptContext` instance itself:
Potential names can include the name of any class importable from the :mod:`passlib.hash` module.
For example, to specify the :class:`passlib.hash.sha256_crypt` and the :class:`passlib.hash.des_crypt` schemes
- should be supported for your new context, set ``schemes=["sha256_crypt", "des_crypt"]``.
+ should be supported for your new context::
+
+ >>> myctx = CryptContext(schemes=["sha256_crypt", "des_crypt"])
``deprecated``