summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hashlib_speed.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-92/+0
| | | | | | | | | | | | (branch-creation time) up to 43067. 43068 and 43069 contain a little swapping action between re.py and sre.py, and this mightily confuses svn merge, so later changes are going in separately. This merge should break no additional tests. The last-merged revision is going in a 'last_merge' property on '.' (the branch directory.) Arbitrarily chosen, really; if there's a BCP for this, I couldn't find it, but we can easily change it afterwards ;)
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-1/+0
|
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-0/+93
A new hashlib module to replace the md5 and sha modules. It adds support for additional secure hashes such as SHA-256 and SHA-512. The hashlib module uses OpenSSL for fast platform optimized implementations of algorithms when available. The old md5 and sha modules still exist as wrappers around hashlib to preserve backwards compatibility.