summaryrefslogtreecommitdiff
path: root/Mailman/pythonlib/cgi.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2001-02-15intermediatebwarsaw1-33/+53
2001-02-15intermediatebwarsaw1-91/+72
2001-02-15This crypt wrapper module is no longer necessary. sha is the defaultbwarsaw1-32/+0
hash function used everywhere in Mailman now.
2001-02-15ValidAdminPassword(): First, use SHA1 as the default hash, and comparebwarsaw1-18/+25
the response against the SHA encrypted password. If that fails, and the crypt module can be imported, try that as a fallback, but if that succeeds, update the password to be the SHA1 version. MakeCookie(), CheckCookie(): Use Python 2.0's binascii.{un,}hexlify() functions instead of the slower (and obsolete) ones in Utils.py. ExtractApproval(): Removed.