The Passlib documentation has moved to https://passlib.readthedocs.io
passlib.hash.ldap_other - Non-Standard RFC2307 Hashes¶
This section as a catch-all for a number of password hash formats supported by Passlib which use RFC 2307 style encoding, but are not part of any standard.
See also
- password hash usage – for examples of how to use these classes via the common hash interface.
- LDAP / RFC2307 Hashes for a full list of RFC 2307 style hashes.
Hexadecimal Digests¶
All of the digests specified in RFC 2307 use base64 encoding. The following are non-standard versions which use hexadecimal encoding, as is found in some applications.
Other Hashes¶
-
class
passlib.hash.roundup_plaintext¶ RFC 2307 specifies plaintext passwords should be stored without any identifying prefix. This class implements an alternate method used by the Roundup Issue Tracker [1], which (when storing plaintext passwords) uses the identifying prefix
{plaintext}.an example hash (of
password) is{plaintext}password.
Footnotes
| [1] | Roundup Issue Tracker homepage - http://www.roundup-tracker.org. |