Symbol: NOISE_PUBLIC_KEY_LEN
sys/net/wg/if_wg.c
132
uint8_t ue[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/if_wg.c
133
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN];
sys/net/wg/if_wg.c
142
uint8_t ue[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/if_wg.c
70
CTASSERT(WG_KEY_SIZE >= NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
1035
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
1036
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/net/wg/wg_noise.c
106
uint8_t hs_e[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1065
noise_msg_encrypt(es, l->l_public, NOISE_PUBLIC_KEY_LEN,
sys/net/wg/wg_noise.c
1090
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
1091
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/net/wg/wg_noise.c
1097
uint8_t r_public[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1116
NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN,
sys/net/wg/wg_noise.c
1134
memcpy(hs.hs_e, ue, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
1173
uint32_t *r_idx, uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
1179
uint8_t e[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1225
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
123
uint8_t r_public[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
132
uint8_t r_ss[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1478
const uint8_t private[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
1479
const uint8_t public[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
1481
uint8_t dh[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1488
NOISE_PUBLIC_KEY_LEN, ck);
sys/net/wg/wg_noise.c
1489
explicit_bzero(dh, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
1495
const uint8_t ss[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
1497
static uint8_t null_point[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1499
if (timingsafe_bcmp(ss, null_point, NOISE_PUBLIC_KEY_LEN) == 0)
sys/net/wg/wg_noise.c
1504
0, NOISE_PUBLIC_KEY_LEN, ck);
sys/net/wg/wg_noise.c
151
uint8_t l_public[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
152
uint8_t l_private[NOISE_PUBLIC_KEY_LEN];
sys/net/wg/wg_noise.c
1536
const uint8_t s[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
1548
noise_mix_hash(hash, s, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
1582
const uint8_t src[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
1584
noise_mix_hash(hash, src, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
1586
NOISE_PUBLIC_KEY_LEN, ck);
sys/net/wg/wg_noise.c
208
const uint8_t [NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
209
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.c
212
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.c
222
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.c
231
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.c
356
const uint8_t private[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
365
memcpy(l->l_private, private, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
385
noise_local_keys(struct noise_local *l, uint8_t public[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
386
uint8_t private[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
394
memcpy(public, l->l_public, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
396
memcpy(private, l->l_private, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
411
bzero(r->r_ss, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
420
const uint8_t public[NOISE_PUBLIC_KEY_LEN], void *arg)
sys/net/wg/wg_noise.c
426
memcpy(r->r_public, public, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
457
idx = siphash24(l->l_hash_key, r->r_public, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
493
const uint8_t public[NOISE_PUBLIC_KEY_LEN])
sys/net/wg/wg_noise.c
498
idx = siphash24(l->l_hash_key, public, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.c
503
if (timingsafe_bcmp(r->r_public, public, NOISE_PUBLIC_KEY_LEN)
sys/net/wg/wg_noise.c
641
noise_remote_keys(struct noise_remote *r, uint8_t public[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.c
648
memcpy(public, r->r_public, NOISE_PUBLIC_KEY_LEN);
sys/net/wg/wg_noise.h
108
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.h
109
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/net/wg/wg_noise.h
115
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.h
116
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/net/wg/wg_noise.h
122
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.h
129
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.h
54
const uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.h
56
uint8_t[NOISE_PUBLIC_KEY_LEN],
sys/net/wg/wg_noise.h
57
uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.h
62
const uint8_t[NOISE_PUBLIC_KEY_LEN], void *);
sys/net/wg/wg_noise.h
67
const uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/net/wg/wg_noise.h
79
uint8_t[NOISE_PUBLIC_KEY_LEN],