Symbol: siphash
crypto/openssl/providers/implementations/macs/siphash_prov.c
102
ret = SipHash_Init(&ctx->siphash, key, crounds(ctx), drounds(ctx));
crypto/openssl/providers/implementations/macs/siphash_prov.c
104
ctx->sipcopy = ctx->siphash;
crypto/openssl/providers/implementations/macs/siphash_prov.c
120
ctx->siphash = ctx->sipcopy;
crypto/openssl/providers/implementations/macs/siphash_prov.c
134
SipHash_Update(&ctx->siphash, data, datalen);
crypto/openssl/providers/implementations/macs/siphash_prov.c
148
return SipHash_Final(&ctx->siphash, out, hlen);
crypto/openssl/providers/implementations/macs/siphash_prov.c
206
|| !SipHash_set_hash_size(&ctx->siphash, size)
crypto/openssl/providers/implementations/macs/siphash_prov.c
41
SIPHASH siphash; /* Siphash data */
crypto/openssl/providers/implementations/macs/siphash_prov.c
92
return SipHash_hash_size(&ctx->siphash);
crypto/openssl/providers/implementations/signature/mac_legacy_sig.c
240
MAC_SETTABLE_CTX_PARAMS(siphash, "SIPHASH")
crypto/openssl/providers/implementations/signature/mac_legacy_sig.c
263
MAC_SIGNATURE_FUNCTIONS(siphash)
crypto/openssl/providers/implementations/signature/mac_legacy_sig.c
92
MAC_NEWCTX(siphash, "SIPHASH")
crypto/openssl/ssl/quic/quic_lcidm.c
73
SIPHASH siphash = {
crypto/openssl/ssl/quic/quic_lcidm.c
80
if (!SipHash_set_hash_size(&siphash, SIPHASH_MIN_DIGEST_SIZE))
crypto/openssl/ssl/quic/quic_lcidm.c
82
if (!SipHash_Init(&siphash, (uint8_t *)lcid_obj->hash_key, 0, 0))
crypto/openssl/ssl/quic/quic_lcidm.c
84
SipHash_Update(&siphash, lcid_obj->cid.id, lcid_obj->cid.id_len);
crypto/openssl/ssl/quic/quic_lcidm.c
85
if (!SipHash_Final(&siphash, digest, SIPHASH_MIN_DIGEST_SIZE))
crypto/openssl/test/siphash_internal_test.c
1835
SIPHASH siphash = {
crypto/openssl/test/siphash_internal_test.c
1863
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1864
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
1866
SipHash_Update(&siphash, in, inlen);
crypto/openssl/test/siphash_internal_test.c
1867
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1872
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1873
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
1875
SipHash_Update(&siphash, in, 1);
crypto/openssl/test/siphash_internal_test.c
1876
SipHash_Update(&siphash, in + 1, inlen - 1);
crypto/openssl/test/siphash_internal_test.c
1877
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1889
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1890
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
1892
SipHash_Update(&siphash, in, half);
crypto/openssl/test/siphash_internal_test.c
1893
SipHash_Update(&siphash, in + half, inlen - half);
crypto/openssl/test/siphash_internal_test.c
1894
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1903
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
1904
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
1906
SipHash_Update(&siphash, in, half);
crypto/openssl/test/siphash_internal_test.c
1907
SipHash_Update(&siphash, in + half, inlen - half);
crypto/openssl/test/siphash_internal_test.c
1908
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
1924
SIPHASH siphash = {
crypto/openssl/test/siphash_internal_test.c
1931
return TEST_int_eq(SipHash_set_hash_size(&siphash, 4), 0)
crypto/openssl/test/siphash_internal_test.c
1932
&& TEST_false(SipHash_Final(&siphash, output, 0))
crypto/openssl/test/siphash_internal_test.c
1934
&& TEST_true(SipHash_set_hash_size(&siphash, 8))
crypto/openssl/test/siphash_internal_test.c
1935
&& TEST_false(SipHash_Final(&siphash, output, 8))
crypto/openssl/test/siphash_internal_test.c
1936
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
1937
&& TEST_true(SipHash_Final(&siphash, output, 8))
crypto/openssl/test/siphash_internal_test.c
1938
&& TEST_int_eq(SipHash_Final(&siphash, output, 16), 0)
crypto/openssl/test/siphash_internal_test.c
1941
&& TEST_true(SipHash_set_hash_size(&siphash, 16))
crypto/openssl/test/siphash_internal_test.c
1942
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
1943
&& TEST_int_eq(SipHash_Final(&siphash, output, 8), 0)
crypto/openssl/test/siphash_internal_test.c
1944
&& TEST_true(SipHash_Final(&siphash, output, 16))
crypto/openssl/test/siphash_internal_test.c
1947
&& TEST_true(SipHash_set_hash_size(&siphash, 0))
crypto/openssl/test/siphash_internal_test.c
1948
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
1949
&& TEST_int_eq(SipHash_Final(&siphash, output, 8), 0)
crypto/openssl/test/siphash_internal_test.c
1950
&& TEST_true(SipHash_Final(&siphash, output, 16));
sys/netinet/tcp_fastopen.c
536
uint64_t siphash;
sys/netinet/tcp_fastopen.c
552
SipHash_Final((u_int8_t *)&siphash, &ctx);
sys/netinet/tcp_fastopen.c
554
return (siphash);
sys/netinet/tcp_syncache.c
2236
uint32_t siphash[2];
sys/netinet/tcp_syncache.c
2259
SipHash_Final((u_int8_t *)&siphash, &ctx);
sys/netinet/tcp_syncache.c
2261
return (siphash[0] ^ siphash[1]);
sys/netpfil/pf/pf_syncookies.c
427
uint32_t siphash[2];
sys/netpfil/pf/pf_syncookies.c
452
SipHash_Final((uint8_t *)&siphash, &ctx);
sys/netpfil/pf/pf_syncookies.c
454
return (siphash[0] ^ siphash[1]);