Home
last modified time | relevance | path

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

/freebsd/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/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/sys/crypto/siphash/
H A Dsiphash.c122 SipHash_Update(SIPHASH_CTX *ctx, const void *src, size_t len) in SipHash_Update()
207 SipHash_Update(ctx, src, len);
117 SipHash_Update(SIPHASH_CTX *ctx, const void *src, size_t len) SipHash_Update() function
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);
/freebsd/crypto/openssl/include/crypto/
H A Dsiphash.h28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen);
/freebsd/sys/netinet/
H A Dtcp_syncache.c2178 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr)); in syncookie_mac()
2179 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(inc->inc_laddr)); in syncookie_mac()
2184 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr)); in syncookie_mac()
2185 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(inc->inc6_laddr)); in syncookie_mac()
2189 SipHash_Update(&ctx, &inc->inc_fport, sizeof(inc->inc_fport)); in syncookie_mac()
2190 SipHash_Update(&ctx, &inc->inc_lport, sizeof(inc->inc_lport)); in syncookie_mac()
2191 SipHash_Update(&ctx, &irs, sizeof(irs)); in syncookie_mac()
2192 SipHash_Update(&ctx, &flags, sizeof(flags)); in syncookie_mac()
2193 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.c3143 SipHash_Update(&ctx, &inc->inc_fport, sizeof(uint16_t)); in tcp_keyed_hash()
3144 SipHash_Update(&ctx, &inc->inc_lport, sizeof(uint16_t)); in tcp_keyed_hash()
3148 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3149 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(struct in_addr)); in tcp_keyed_hash()
3154 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
3155 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(struct in6_addr)); in tcp_keyed_hash()
/freebsd/crypto/openssl/providers/implementations/macs/
H A Dsiphash_prov.c134 SipHash_Update(&ctx->siphash, data, datalen); in siphash_update()
/freebsd/crypto/openssl/crypto/siphash/
H A Dsiphash.c139 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen) in SipHash_Update() function