summaryrefslogtreecommitdiffstats
path: root/Python/pyhash.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20162: Fix an alignment issue in the siphash24() hash function whichVictor Stinner2014-02-011-1/+1
| | | | caused a crash on PowerPC 64-bit (ppc64).
* Issue #19183: too many tests depend on the sort order of repr().Christian Heimes2013-11-201-3/+0
| | | | The bitshift and xor op for 32bit builds has changed the order of hash values.
* ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-201-0/+430
Python now uses SipHash24 on all major platforms.