Symbol: NOISE_PUBLIC_KEY_LEN
sys/dev/wg/if_wg.c
84
uint8_t ue[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/if_wg.c
85
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN];
sys/dev/wg/if_wg.c
94
uint8_t ue[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
100
uint8_t r_public[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1001
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
1002
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/dev/wg/wg_noise.c
1008
uint8_t r_public[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1026
NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN, key, hs.hs_hash) != 0)
sys/dev/wg/wg_noise.c
1042
memcpy(hs.hs_e, ue, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
1080
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
1086
uint8_t e[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
109
uint8_t r_ss[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1124
explicit_bzero(e, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
1131
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
125
uint8_t l_public[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
126
uint8_t l_private[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1275
const uint8_t private[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
1276
const uint8_t public[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
1278
uint8_t dh[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1283
NOISE_HASH_LEN, NOISE_SYMMETRIC_KEY_LEN, 0, NOISE_PUBLIC_KEY_LEN, ck);
sys/dev/wg/wg_noise.c
1284
explicit_bzero(dh, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
1290
const uint8_t ss[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
1292
static uint8_t null_point[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
1293
if (timingsafe_bcmp(ss, null_point, NOISE_PUBLIC_KEY_LEN) == 0)
sys/dev/wg/wg_noise.c
1296
NOISE_HASH_LEN, NOISE_SYMMETRIC_KEY_LEN, 0, NOISE_PUBLIC_KEY_LEN, ck);
sys/dev/wg/wg_noise.c
1328
const uint8_t s[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
1340
noise_mix_hash(hash, s, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
1367
const uint8_t src[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
1369
noise_mix_hash(hash, src, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
1371
NOISE_PUBLIC_KEY_LEN, ck);
sys/dev/wg/wg_noise.c
157
const uint8_t [NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
158
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.c
160
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.c
165
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.c
171
const uint8_t [NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.c
189
bzero(l->l_public, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
190
bzero(l->l_private, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
243
noise_local_private(struct noise_local *l, const uint8_t private[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
250
memcpy(l->l_private, private, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
266
noise_local_keys(struct noise_local *l, uint8_t public[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
267
uint8_t private[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
273
memcpy(public, l->l_public, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
275
memcpy(private, l->l_private, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
288
bzero(r->r_ss, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
295
const uint8_t public[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
300
memcpy(r->r_public, public, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
328
idx = siphash24(l->l_hash_key, r->r_public, NOISE_PUBLIC_KEY_LEN) & HT_REMOTE_MASK;
sys/dev/wg/wg_noise.c
360
noise_remote_lookup(struct noise_local *l, const uint8_t public[NOISE_PUBLIC_KEY_LEN])
sys/dev/wg/wg_noise.c
366
idx = siphash24(l->l_hash_key, public, NOISE_PUBLIC_KEY_LEN) & HT_REMOTE_MASK;
sys/dev/wg/wg_noise.c
370
if (timingsafe_bcmp(r->r_public, public, NOISE_PUBLIC_KEY_LEN) == 0) {
sys/dev/wg/wg_noise.c
524
noise_remote_keys(struct noise_remote *r, uint8_t public[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
531
memcpy(public, r->r_public, NOISE_PUBLIC_KEY_LEN);
sys/dev/wg/wg_noise.c
84
uint8_t hs_e[NOISE_PUBLIC_KEY_LEN];
sys/dev/wg/wg_noise.c
946
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.c
947
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/dev/wg/wg_noise.c
975
NOISE_PUBLIC_KEY_LEN, key, hs->hs_hash);
sys/dev/wg/wg_noise.h
100
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.h
101
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/dev/wg/wg_noise.h
108
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.h
109
uint8_t es[NOISE_PUBLIC_KEY_LEN + NOISE_AUTHTAG_LEN],
sys/dev/wg/wg_noise.h
116
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.h
124
uint8_t ue[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.h
36
const uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.h
38
uint8_t[NOISE_PUBLIC_KEY_LEN],
sys/dev/wg/wg_noise.h
39
uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.h
44
const uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.h
48
noise_remote_lookup(struct noise_local *, const uint8_t[NOISE_PUBLIC_KEY_LEN]);
sys/dev/wg/wg_noise.h
62
uint8_t[NOISE_PUBLIC_KEY_LEN],