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
171
SIPHASH siphash = {
crypto/openssl/test/siphash_internal_test.c
199
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
200
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
202
SipHash_Update(&siphash, in, inlen);
crypto/openssl/test/siphash_internal_test.c
203
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen))
crypto/openssl/test/siphash_internal_test.c
208
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
209
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
211
SipHash_Update(&siphash, in, 1);
crypto/openssl/test/siphash_internal_test.c
212
SipHash_Update(&siphash, in + 1, inlen - 1);
crypto/openssl/test/siphash_internal_test.c
213
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
225
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
226
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
228
SipHash_Update(&siphash, in, half);
crypto/openssl/test/siphash_internal_test.c
229
SipHash_Update(&siphash, in + half, inlen - half);
crypto/openssl/test/siphash_internal_test.c
230
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
239
if (!TEST_true(SipHash_set_hash_size(&siphash, expectedlen))
crypto/openssl/test/siphash_internal_test.c
240
|| !TEST_true(SipHash_Init(&siphash, key, 0, 0)))
crypto/openssl/test/siphash_internal_test.c
242
SipHash_Update(&siphash, in, half);
crypto/openssl/test/siphash_internal_test.c
243
SipHash_Update(&siphash, in + half, inlen - half);
crypto/openssl/test/siphash_internal_test.c
244
if (!TEST_true(SipHash_Final(&siphash, out, expectedlen)))
crypto/openssl/test/siphash_internal_test.c
260
SIPHASH siphash = {
crypto/openssl/test/siphash_internal_test.c
267
return TEST_int_eq(SipHash_set_hash_size(&siphash, 4), 0)
crypto/openssl/test/siphash_internal_test.c
268
&& TEST_false(SipHash_Final(&siphash, output, 0))
crypto/openssl/test/siphash_internal_test.c
270
&& TEST_true(SipHash_set_hash_size(&siphash, 8))
crypto/openssl/test/siphash_internal_test.c
271
&& TEST_false(SipHash_Final(&siphash, output, 8))
crypto/openssl/test/siphash_internal_test.c
272
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
273
&& TEST_true(SipHash_Final(&siphash, output, 8))
crypto/openssl/test/siphash_internal_test.c
274
&& TEST_int_eq(SipHash_Final(&siphash, output, 16), 0)
crypto/openssl/test/siphash_internal_test.c
277
&& TEST_true(SipHash_set_hash_size(&siphash, 16))
crypto/openssl/test/siphash_internal_test.c
278
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
279
&& TEST_int_eq(SipHash_Final(&siphash, output, 8), 0)
crypto/openssl/test/siphash_internal_test.c
280
&& TEST_true(SipHash_Final(&siphash, output, 16))
crypto/openssl/test/siphash_internal_test.c
283
&& TEST_true(SipHash_set_hash_size(&siphash, 0))
crypto/openssl/test/siphash_internal_test.c
284
&& TEST_true(SipHash_Init(&siphash, key, 0, 0))
crypto/openssl/test/siphash_internal_test.c
285
&& TEST_int_eq(SipHash_Final(&siphash, output, 8), 0)
crypto/openssl/test/siphash_internal_test.c
286
&& 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
2218
uint32_t siphash[2];
sys/netinet/tcp_syncache.c
2241
SipHash_Final((u_int8_t *)&siphash, &ctx);
sys/netinet/tcp_syncache.c
2243
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]);