Home
last modified time | relevance | path

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

/freebsd-14.2/crypto/openssl/test/
H A Dsiphash_internal_test.c201 SipHash_Update(&siphash, in, inlen); in test_siphash()
210 SipHash_Update(&siphash, in, 1); in test_siphash()
211 SipHash_Update(&siphash, in+1, inlen-1); in test_siphash()
227 SipHash_Update(&siphash, in, half); in test_siphash()
228 SipHash_Update(&siphash, in+half, inlen-half); in test_siphash()
241 SipHash_Update(&siphash, in, half); in test_siphash()
242 SipHash_Update(&siphash, in+half, inlen-half); in test_siphash()
/freebsd-14.2/sys/netpfil/pf/
H A Dpf_syncookies.c439 SipHash_Update(&ctx, pd->src, sizeof(pd->src->v4)); in pf_syncookie_mac()
440 SipHash_Update(&ctx, pd->dst, sizeof(pd->dst->v4)); in pf_syncookie_mac()
443 SipHash_Update(&ctx, pd->src, sizeof(pd->src->v6)); in pf_syncookie_mac()
444 SipHash_Update(&ctx, pd->dst, sizeof(pd->dst->v6)); in pf_syncookie_mac()
450 SipHash_Update(&ctx, pd->sport, sizeof(*pd->sport)); in pf_syncookie_mac()
451 SipHash_Update(&ctx, pd->dport, sizeof(*pd->dport)); in pf_syncookie_mac()
452 SipHash_Update(&ctx, &seq, sizeof(seq)); in pf_syncookie_mac()
453 SipHash_Update(&ctx, &cookie, sizeof(cookie)); in pf_syncookie_mac()
/freebsd-14.2/sys/crypto/siphash/
H A Dsiphash_test.c124 SipHash_Update(&ctx, in, i); in SipHash24_TestVectors()
H A Dsiphash.c118 SipHash_Update(SIPHASH_CTX *ctx, const void *src, size_t len) in SipHash_Update() function
203 SipHash_Update(ctx, src, len); in SipHashX()
H A Dsiphash.h71 void SipHash_Update(SIPHASH_CTX *, const void *, size_t);
/freebsd-14.2/crypto/openssl/include/crypto/
H A Dsiphash.h28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen);
/freebsd-14.2/sys/netinet/
H A Dtcp_syncache.c2188 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in syncookie_mac()
2189 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(inc->inc_laddr)); in syncookie_mac()
2194 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in syncookie_mac()
2195 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(inc->inc6_laddr)); in syncookie_mac()
2199 SipHash_Update(&ctx, &inc->inc_fport, sizeof(inc->inc_fport)); in syncookie_mac()
2200 SipHash_Update(&ctx, &inc->inc_lport, sizeof(inc->inc_lport)); in syncookie_mac()
2201 SipHash_Update(&ctx, &irs, sizeof(irs)); in syncookie_mac()
2202 SipHash_Update(&ctx, &flags, sizeof(flags)); in syncookie_mac()
2203 SipHash_Update(&ctx, &secmod, sizeof(secmod)); in syncookie_mac()
H A Dtcp_fastopen.c544 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in tcp_fastopen_make_cookie()
549 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in tcp_fastopen_make_cookie()
566 SipHash_Update(&ctx, cookie, cookie_len); in tcp_fastopen_make_psk_cookie()
H A Dtcp_subr.c3196 SipHash_Update(&ctx, &inc->inc_fport, sizeof(uint16_t)); in tcp_keyed_hash()
3197 SipHash_Update(&ctx, &inc->inc_lport, sizeof(uint16_t)); in tcp_keyed_hash()
3201 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3202 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3207 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
3208 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
/freebsd-14.2/crypto/openssl/providers/implementations/macs/
H A Dsiphash_prov.c134 SipHash_Update(&ctx->siphash, data, datalen); in siphash_update()
/freebsd-14.2/crypto/openssl/crypto/siphash/
H A Dsiphash.c139 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen) in SipHash_Update() function