byte swap the raw hash secrets (more bpo-32260) (#4773)
This commit is contained in:
parent
83620773ee
commit
60ed130830
|
@ -415,7 +415,7 @@ siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) {
|
|||
static Py_hash_t
|
||||
pysiphash(const void *src, Py_ssize_t src_sz) {
|
||||
return (Py_hash_t)siphash24(
|
||||
_Py_HashSecret.siphash.k0, _Py_HashSecret.siphash.k1,
|
||||
_le64toh(_Py_HashSecret.siphash.k0), _le64toh(_Py_HashSecret.siphash.k1),
|
||||
src, src_sz);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue