Home
last modified time | relevance | path

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

/src/crypto/openssl/test/
H A Dsiphash_internal_test.c1866 SipHash_Update(&siphash, in, inlen); in test_siphash()
1875 SipHash_Update(&siphash, in, 1); in test_siphash()
1876 SipHash_Update(&siphash, in + 1, inlen - 1); in test_siphash()
1892 SipHash_Update(&siphash, in, half); in test_siphash()
1893 SipHash_Update(&siphash, in + half, inlen - half); in test_siphash()
1906 SipHash_Update(&siphash, in, half); in test_siphash()
1907 SipHash_Update(&siphash, in + half, inlen - half); in test_siphash()
/src/sys/netpfil/pf/
H A Dpf_syncookies.c437 SipHash_Update(&ctx, pd->src, sizeof(pd->src->v4)); in pf_syncookie_mac()
438 SipHash_Update(&ctx, pd->dst, sizeof(pd->dst->v4)); in pf_syncookie_mac()
441 SipHash_Update(&ctx, pd->src, sizeof(pd->src->v6)); in pf_syncookie_mac()
442 SipHash_Update(&ctx, pd->dst, sizeof(pd->dst->v6)); in pf_syncookie_mac()
448 SipHash_Update(&ctx, pd->sport, sizeof(*pd->sport)); in pf_syncookie_mac()
449 SipHash_Update(&ctx, pd->dport, sizeof(*pd->dport)); in pf_syncookie_mac()
450 SipHash_Update(&ctx, &seq, sizeof(seq)); in pf_syncookie_mac()
451 SipHash_Update(&ctx, &cookie, sizeof(cookie)); in pf_syncookie_mac()
/src/sys/crypto/siphash/
H A Dsiphash.c122 SipHash_Update(SIPHASH_CTX *ctx, const void *src, size_t len) in SipHash_Update() function
207 SipHash_Update(ctx, src, len); in SipHashX()
H A Dsiphash_test.c124 SipHash_Update(&ctx, in, i); in SipHash24_TestVectors()
H A Dsiphash.h71 void SipHash_Update(SIPHASH_CTX *, const void *, size_t);
/src/crypto/openssl/include/crypto/
H A Dsiphash.h28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen);
/src/sys/netinet/
H A Dtcp_syncache.c2243 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in syncookie_mac()
2244 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(inc->inc_laddr)); in syncookie_mac()
2249 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in syncookie_mac()
2250 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(inc->inc6_laddr)); in syncookie_mac()
2254 SipHash_Update(&ctx, &inc->inc_fport, sizeof(inc->inc_fport)); in syncookie_mac()
2255 SipHash_Update(&ctx, &inc->inc_lport, sizeof(inc->inc_lport)); in syncookie_mac()
2256 SipHash_Update(&ctx, &irs, sizeof(irs)); in syncookie_mac()
2257 SipHash_Update(&ctx, &flags, sizeof(flags)); in syncookie_mac()
2258 SipHash_Update(&ctx, &secmod, sizeof(secmod)); in syncookie_mac()
H A Dtcp_fastopen.c543 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in tcp_fastopen_make_cookie()
548 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in tcp_fastopen_make_cookie()
565 SipHash_Update(&ctx, cookie, cookie_len); in tcp_fastopen_make_psk_cookie()
H A Dtcp_subr.c3418 SipHash_Update(&ctx, &inc->inc_fport, sizeof(uint16_t)); in tcp_keyed_hash()
3419 SipHash_Update(&ctx, &inc->inc_lport, sizeof(uint16_t)); in tcp_keyed_hash()
3423 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3424 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3429 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
3430 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
/src/crypto/openssl/providers/implementations/macs/
H A Dsiphash_prov.c134 SipHash_Update(&ctx->siphash, data, datalen); in siphash_update()
/src/crypto/openssl/crypto/siphash/
H A Dsiphash.c136 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen) in SipHash_Update() function
/src/crypto/openssl/ssl/quic/
H A Dquic_lcidm.c82 SipHash_Update(&siphash, lcid_obj->cid.id, lcid_obj->cid.id_len); in lcid_hash()