Home
last modified time | relevance | path

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

/third_party/python/Python/
Dpyhash.c375 siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) { in siphash24() function
426 return siphash24(key, 0, src, src_sz); in _Py_KeyedHash()
433 return (Py_hash_t)siphash24( in pysiphash()
/third_party/skia/third_party/externals/expat/expat/lib/
Dsiphash.h271 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24() function
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/third_party/python/Modules/expat/
Dsiphash.h271 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24() function
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/third_party/python/Doc/using/
Dconfigure.rst416 .. cmdoption:: --with-hash-algorithm=[fnv|siphash24]
420 * ``siphash24`` (default).
/third_party/python/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.
D3.8.0a1.rst1303 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
/third_party/python/Doc/
Dlicense.rst618 Samuel Neves (supercop/crypto_auth/siphash24/little)
619 djb (supercop/crypto_auth/siphash24/little2)
620 Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c)
/third_party/python/
Dconfigure.ac3024 AS_HELP_STRING([--with-hash-algorithm=@<:@fnv|siphash24@:>@],
3029 siphash24)
Dconfigure10495 siphash24)
/third_party/skia/third_party/externals/expat/expat/tests/
Druntests.c529 if (siphash24(message, len, &key) != expected) in START_TEST()
/third_party/python/Misc/
DHISTORY2358 - Issue #20162: Fix an alignment issue in the siphash24() hash function which