summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hashlib.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 66496 via svnmerge fromBenjamin Peterson2008-09-241-2/+16
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66496 | benjamin.peterson | 2008-09-17 20:22:16 -0500 (Wed, 17 Sep 2008) | 1 line fix possible integer overflows in _hashopenssl #3886 ........
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
|
* email address updateGregory P. Smith2007-09-091-1/+1
|
* More changes needed to make things work once bytes and str are truly divorced.Guido van Rossum2007-08-271-21/+21
|
* Fix test_hashlib regression caused by my fixing hexdigest() to returnGuido van Rossum2007-07-101-13/+12
| | | | | | a text string instead of bytes. (This being hex digits it *should* be a text string -- that it wasn't before was a misunderstanding on my part of the C code.)
* Change hashlib to return bytes from digest() instead of str8.Guido van Rossum2007-07-091-19/+22
|
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-0/+191
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.