Home
last modified time | relevance | path

Searched refs:siphash24 (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Python/
Dpyhash.c367 siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) { in siphash24() function
417 return (Py_hash_t)siphash24( in pysiphash()
425 return siphash24(key, 0, src, src_sz); in _Py_KeyedHash()
/external/python/cpython2/Modules/expat/
Dsiphash.h270 static uint64_t siphash24(const void *src, size_t len, in siphash24() function
365 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/external/python/cpython3/Modules/expat/
Dsiphash.h270 static uint64_t siphash24(const void *src, size_t len, in siphash24() function
365 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/external/expat/lib/
Dsiphash.h270 static uint64_t siphash24(const void *src, size_t len, in siphash24() function
365 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst58 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
D3.6.6rc1.rst56 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
/external/python/cpython3/Doc/
Dlicense.rst584 Samuel Neves (supercop/crypto_auth/siphash24/little)
585 djb (supercop/crypto_auth/siphash24/little2)
586 Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c)
/external/python/cpython3/
Dconfigure.ac2893 AS_HELP_STRING([--with-hash-algorithm=@<:@fnv|siphash24@:>@],
2898 siphash24)
Dconfigure1523 --with-hash-algorithm=[fnv|siphash24]
10080 siphash24)
/external/expat/tests/
Druntests.c524 if (siphash24(message, len, &key) != expected) in START_TEST()
/external/python/cpython3/Misc/
DHISTORY2358 - Issue #20162: Fix an alignment issue in the siphash24() hash function which