diff options
| author | Eli Collins <elic@assurancetechnologies.com> | 2011-01-28 06:35:56 +0000 |
|---|---|---|
| committer | Eli Collins <elic@assurancetechnologies.com> | 2011-01-28 06:35:56 +0000 |
| commit | fea8e73c8e9bef3e9423af50c128cb20e7813b09 (patch) | |
| tree | 984691ea244b83ff9cbc8d8692f66f00142f62b9 /passlib/utils/des.py | |
| parent | bc738f4c6e35a31c9edd5fb54f13773e15978a09 (diff) | |
| download | passlib-fea8e73c8e9bef3e9423af50c128cb20e7813b09.tar.gz | |
wow. lots of rearranging
========================
* back to 1.2 structure
* moved h64 helpers into utils.h64 module
* pared down CryptHandler
* tightened UTs somewhat
Diffstat (limited to 'passlib/utils/des.py')
| -rw-r--r-- | passlib/utils/des.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/passlib/utils/des.py b/passlib/utils/des.py index ca27f10..0851bb3 100644 --- a/passlib/utils/des.py +++ b/passlib/utils/des.py @@ -9,6 +9,7 @@ such as ``lmhash`` and ``des-crypt``. .. function:: expand_des_key .. function:: des_encrypt_block .. function:: mdes_encrypt_int_block + """ """ @@ -45,6 +46,9 @@ The copyright & license for that source is as follows:: @version $Id: UnixCrypt2.txt,v 1.1.1.1 2005/09/13 22:20:13 christos Exp $ @author Greg Wilkins (gregw) """ + +#TODO: could use an accelerated C version of this module to speed up lmhash, des-crypt, and ext-des-crypt + #========================================================= #imports #========================================================= |
