| Commit message (Expand) | Author | Age | Files | Lines |
* | exclude _hashopenssl.c:_setException() from LCOV coverage | Christian Heimes | 2013-12-05 | 1 | -0/+2 |
|
|
* | Remove unused code path from PBKDF2 that is causing a warning on Win64 | Christian Heimes | 2013-11-18 | 1 | -5/+1 |
|
|
* | Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t | Victor Stinner | 2013-11-15 | 1 | -1/+1 |
|
|
* | Issue #18582: fix memory leak in pbkdf2 code | Christian Heimes | 2013-11-06 | 1 | -0/+1 |
|
|
* | Silence a compiler warning about an unused function | Brett Cannon | 2013-11-01 | 1 | -28/+28 |
|
|
* | Issue #19420: Fix reference leak in module initalization code of _hashopenssl.c | Christian Heimes | 2013-10-29 | 1 | -1/+1 |
|
|
* | Issue #18742: Expose the internal hash type object for ABCs. | Christian Heimes | 2013-10-22 | 1 | -3/+1 |
|
|
* | Load SSL's error strings in hashlib. | Christian Heimes | 2013-10-21 | 1 | -0/+1 |
|
|
* | Make PKCS5_PBKDF2_HMAC_fast() a static function | Christian Heimes | 2013-10-20 | 1 | -4/+5 |
|
|
* | Issue #18582: HMAC_CTX_copy() is not available on OpenSSL < 1.0 | Christian Heimes | 2013-10-19 | 1 | -1/+2 |
|
|
* | Issue #18582: provide a faster C implementation of pbkdf2_hmac that works wit... | Christian Heimes | 2013-10-19 | 1 | -6/+94 |
|
|
* | Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. | Christian Heimes | 2013-10-12 | 1 | -0/+136 |
|
|
* | In the _hashlib module, only initialize the static data for OpenSSL's | Gregory P. Smith | 2013-02-02 | 1 | -6/+9 |
|\ |
|
| * | In the _hashlib module, only initialize the static data for OpenSSL's | Gregory P. Smith | 2013-02-02 | 1 | -6/+9 |
| |\ |
|
| | * | In the _hashlib module, only initialize the static data for OpenSSL's | Gregory P. Smith | 2013-02-02 | 1 | -6/+9 |
|
|
* | | | Issue #16113: integrade SHA-3 (Keccak) patch from http://hg.python.org/sandbo... | Christian Heimes | 2012-10-06 | 1 | -22/+0 |
|/ / |
|
* | | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 | Victor Stinner | 2011-10-14 | 1 | -5/+3 |
|/ |
|
* | hashlib has two new constant attributes: algorithms_guaranteed and | Gregory P. Smith | 2010-09-06 | 1 | -1/+69 |
|
|
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 | Alexander Belopolsky | 2010-08-11 | 1 | -1/+1 |
|
|
* | Issue #6697: use %U format instead of _PyUnicode_AsString(), because | Victor Stinner | 2010-03-12 | 1 | -4/+1 |
|
|
* | Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,... | Benjamin Peterson | 2010-02-03 | 1 | -1/+13 |
|
|
* | Merged revisions 77209,77229,77359-77360,77371 via svnmerge from | Benjamin Peterson | 2010-01-09 | 1 | -1/+1 |
|
|
* | remove old undocumented compat interfaces in hashlib and pwd #5881 | Benjamin Peterson | 2009-05-04 | 1 | -6/+0 |
|
|
* | Merge refactoring I did when committing r72267 to trunk into the | Gregory P. Smith | 2009-05-04 | 1 | -33/+27 |
|
|
* | Fixes Issue #3745: Fix hashlib to always reject unicode and non | Gregory P. Smith | 2009-02-12 | 1 | -26/+5 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Issue #4751: hashlib now releases the GIL when hashing large buffers | Antoine Pitrou | 2009-01-08 | 1 | -91/+154 |
|
|
* | Merged revisions 66496 via svnmerge from | Benjamin Peterson | 2008-09-24 | 1 | -13/+43 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -7/+7 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -4/+18 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -1/+1 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -4/+4 |
|
|
* | Refuse to compute digests from PyUnicode (str) instances. | Guido van Rossum | 2007-08-29 | 1 | -2/+2 |
|
|
* | Pass PyBUF_CHARACTER instead of PyBUF_SIMPLE to PyObject_GetBuffer(). | Guido van Rossum | 2007-08-26 | 1 | -1/+1 |
|
|
* | Use the new buffer api for input data. | Gregory P. Smith | 2007-08-26 | 1 | -27/+79 |
|
|
* | Use unicode. | Neal Norwitz | 2007-08-23 | 1 | -2/+2 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
* | Make sure hexdigest() returns str, not str8. | Guido van Rossum | 2007-07-10 | 1 | -11/+6 |
|
|
* | Change hashlib to return bytes from digest() instead of str8. | Guido van Rossum | 2007-07-09 | 1 | -2/+2 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -15/+6 |
|
|
* | Properly fix Py_SAFE_DOWNCAST-triggerd bugs. | Thomas Wouters | 2006-03-02 | 1 | -7/+10 |
|
|
* | Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t | Thomas Wouters | 2006-03-02 | 1 | -7/+4 |
|
|
* | Make Py_ssize_t-clean. | Thomas Wouters | 2006-03-01 | 1 | -8/+13 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
|
|
* | Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if HASH_OBJ... | Neal Norwitz | 2006-01-08 | 1 | -0/+4 |
|
|