/freebsd/crypto/openssl/test/ |
H A D | siphash_internal_test.c | 201 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 D | pf_syncookies.c | 439 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 D | siphash.c | 122 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 D | siphash_test.c | 124 SipHash_Update(&ctx, in, i); in SipHash24_TestVectors()
|
H A D | siphash.h | 71 void SipHash_Update(SIPHASH_CTX *, const void *, size_t);
|
/freebsd/crypto/openssl/include/crypto/ |
H A D | siphash.h | 28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen);
|
/freebsd/sys/netinet/ |
H A D | tcp_syncache.c | 2178 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 D | tcp_fastopen.c | 544 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 D | tcp_subr.c | 3143 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 D | siphash_prov.c | 134 SipHash_Update(&ctx->siphash, data, datalen); in siphash_update()
|
/freebsd/crypto/openssl/crypto/siphash/ |
H A D | siphash.c | 139 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen) in SipHash_Update() function
|