summaryrefslogtreecommitdiff
path: root/Mailman/Crypt.py
Commit message (Collapse)AuthorAgeFilesLines
* This crypt wrapper module is no longer necessary. sha is the defaultbwarsaw2001-02-151-32/+0
| | | | hash function used everywhere in Mailman now.
* Update the copyright lines to include the years 1999 & 2000.bwarsaw2000-03-211-1/+1
|
* Config => mm_cfgbwarsaw1998-06-191-3/+3
|
* Added GPLbwarsaw1998-06-161-4/+28
| | | | | | | | | Even if USE_CRYPT is set, catch ImportError when trying to import crypt.crypt. If that fails, then we'll still use our md5 wrapper, and we'll set USE_CRYPT to 0. Don't import all of the crypt module's attributes into this module since the only one we mask anyway is crypt.crypt.
* There's now a global USE_CRYPT variable. It *should* be set by theviega1998-06-141-2/+4
| | | | | | | autoconf stuff. Basically, the autoconf script should fire up Python and see if crypt can be imported. Of course, if a previous installation has a different value than configure determined, it should be used instead, otherwise stuff will mess up.
* Ah, I saw the "More condensed" interface to md5, and used that instead.viega1998-05-301-3/+1
|
* Added mm_crypt, which trys to import crypt, and provides a wrapperviega1998-05-301-0/+8
interface to an md5 digest if the import fails. This way, we don't have to tell people to recompile python if they compiled it out of the box. (since crypt is no longer in by default). mm_security now uses mm_crypt instead of crypt.