Symbol: NOISE_PUBLIC_KEY_LEN
drivers/net/wireguard/cookie.c
33
const u8 pubkey[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/cookie.c
40
blake2s_update(&blake, pubkey, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/messages.h
83
u8 unencrypted_ephemeral[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/messages.h
84
u8 encrypted_static[noise_encrypted_len(NOISE_PUBLIC_KEY_LEN)];
drivers/net/wireguard/messages.h
93
u8 unencrypted_ephemeral[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/netlink.c
213
NOISE_PUBLIC_KEY_LEN,
drivers/net/wireguard/netlink.c
216
NOISE_PUBLIC_KEY_LEN,
drivers/net/wireguard/netlink.c
349
nla_len(attrs[WGPEER_A_PUBLIC_KEY]) == NOISE_PUBLIC_KEY_LEN)
drivers/net/wireguard/netlink.c
380
NOISE_PUBLIC_KEY_LEN)) {
drivers/net/wireguard/netlink.c
522
NOISE_PUBLIC_KEY_LEN) {
drivers/net/wireguard/netlink.c
524
u8 public_key[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/netlink.c
529
private_key, NOISE_PUBLIC_KEY_LEN))
drivers/net/wireguard/netlink.c
598
BUILD_BUG_ON(WG_KEY_LEN != NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/netlink.c
88
fail = nla_put(skb, WGPEER_A_PUBLIC_KEY, NOISE_PUBLIC_KEY_LEN,
drivers/net/wireguard/noise.c
296
const u8 private_key[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/noise.c
299
NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
406
const u8 private[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/noise.c
407
const u8 public[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/noise.c
409
u8 dh_calculation[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
414
NOISE_SYMMETRIC_KEY_LEN, 0, NOISE_PUBLIC_KEY_LEN, chaining_key);
drivers/net/wireguard/noise.c
415
memzero_explicit(dh_calculation, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
421
const u8 precomputed[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/noise.c
423
static u8 zero_point[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
424
if (unlikely(!crypto_memneq(precomputed, zero_point, NOISE_PUBLIC_KEY_LEN)))
drivers/net/wireguard/noise.c
427
NOISE_SYMMETRIC_KEY_LEN, 0, NOISE_PUBLIC_KEY_LEN,
drivers/net/wireguard/noise.c
456
const u8 remote_static[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/noise.c
460
mix_hash(hash, remote_static, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
485
static void message_ephemeral(u8 ephemeral_dst[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/noise.c
486
const u8 ephemeral_src[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/noise.c
491
memcpy(ephemeral_dst, ephemeral_src, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
492
mix_hash(hash, ephemeral_src, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
494
NOISE_PUBLIC_KEY_LEN, chaining_key);
drivers/net/wireguard/noise.c
55
NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
557
NOISE_PUBLIC_KEY_LEN, key, handshake->hash);
drivers/net/wireguard/noise.c
593
u8 s[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
594
u8 e[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
61
const u8 peer_public_key[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/noise.c
644
memcpy(handshake->remote_ephemeral, e, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
69
memcpy(handshake->remote_static, peer_public_key, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
737
u8 e[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
738
u8 ephemeral_private[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
739
u8 static_private[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.c
758
NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
794
memcpy(handshake->remote_ephemeral, e, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
80
memset(&handshake->ephemeral_private, 0, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
809
memzero_explicit(ephemeral_private, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
81
memset(&handshake->remote_ephemeral, 0, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.c
810
memzero_explicit(static_private, NOISE_PUBLIC_KEY_LEN);
drivers/net/wireguard/noise.h
116
const u8 private_key[NOISE_PUBLIC_KEY_LEN]);
drivers/net/wireguard/noise.h
51
u8 static_public[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
52
u8 static_private[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
73
u8 ephemeral_private[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
74
u8 remote_static[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
75
u8 remote_ephemeral[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
76
u8 precomputed_static_static[NOISE_PUBLIC_KEY_LEN];
drivers/net/wireguard/noise.h
97
const u8 peer_public_key[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/peer.c
22
const u8 public_key[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/peer.h
70
const u8 public_key[NOISE_PUBLIC_KEY_LEN],
drivers/net/wireguard/peerlookup.c
11
const u8 pubkey[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/peerlookup.c
17
const u64 hash = siphash(pubkey, NOISE_PUBLIC_KEY_LEN, &table->key);
drivers/net/wireguard/peerlookup.c
55
const u8 pubkey[NOISE_PUBLIC_KEY_LEN])
drivers/net/wireguard/peerlookup.c
63
NOISE_PUBLIC_KEY_LEN)) {
drivers/net/wireguard/peerlookup.h
31
const u8 pubkey[NOISE_PUBLIC_KEY_LEN]);