Symbol: siphash
drivers/net/wireguard/peerlookup.c
17
const u64 hash = siphash(pubkey, NOISE_PUBLIC_KEY_LEN, &table->key);
fs/crypto/fname.c
473
return siphash(name->name, name->len, &ci->ci_dirhash_key);
fs/nfsd/nfsfh.c
159
hash = cpu_to_le64(siphash(&fh->fh_raw, fh->fh_size, fh_key));
fs/nfsd/nfsfh.c
190
hash = cpu_to_le64(siphash(&fh->fh_raw, fh->fh_size - sizeof(hash), fh_key));
lib/tests/siphash_kunit.c
125
chk(siphash(in, i, &test_key_siphash),
lib/tests/siphash_kunit.c
128
chk(siphash(in_unaligned + 1, i, &test_key_siphash),
net/core/flow_dissector.c
1811
hash = siphash(flow_keys_hash_start(keys),
net/core/secure_seq.c
69
st.hash64 = siphash(&combined, offsetofend(typeof(combined), dport),
net/core/secure_seq.c
95
return siphash(&combined, offsetofend(typeof(combined), dport),
net/ipv4/tcp_fastopen.c
215
foc->val[0] = cpu_to_le64(siphash(&iph->saddr,
net/ipv4/tcp_fastopen.c
226
foc->val[0] = cpu_to_le64(siphash(&ip6h->saddr,
net/ipv6/route.c
1566
val = siphash(&combined, sizeof(combined), &rt6_exception_key);
net/ipv6/syncookies.c
60
return siphash(&combined, offsetofend(typeof(combined), dport),
net/netfilter/nf_conntrack_core.c
223
return siphash((void *)tuple,
net/netfilter/nf_conntrack_core.c
491
d = (unsigned long)siphash(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
net/netfilter/nf_conntrack_expect.c
111
hash = siphash(&combined, sizeof(combined), &nf_ct_expect_hashrnd);
net/netfilter/nf_conntrack_netlink.c
2991
d = (unsigned long)siphash(&exp->tuple, sizeof(exp->tuple), &exp_id_seed);
net/netfilter/nf_nat_core.c
173
hash = siphash(&combined, sizeof(combined), &nf_nat_hash_rnd);