Home
last modified time | relevance | path

Searched refs:static_identity (Results 1 – 7 of 7) sorted by relevance

/linux-5.19.10/drivers/net/wireguard/
Dnoise.c50 if (!peer->handshake.static_identity->has_identity || in wg_noise_precompute_static_static()
52 peer->handshake.static_identity->static_private, in wg_noise_precompute_static_static()
60 struct noise_static_identity *static_identity, in wg_noise_handshake_init() argument
73 handshake->static_identity = static_identity; in wg_noise_handshake_init()
295 struct noise_static_identity *static_identity, in wg_noise_set_static_identity_private_key() argument
298 memcpy(static_identity->static_private, private_key, in wg_noise_set_static_identity_private_key()
300 curve25519_clamp_secret(static_identity->static_private); in wg_noise_set_static_identity_private_key()
301 static_identity->has_identity = curve25519_generate_public( in wg_noise_set_static_identity_private_key()
302 static_identity->static_public, private_key); in wg_noise_set_static_identity_private_key()
529 down_read(&handshake->static_identity->lock); in wg_noise_handshake_create_initiation()
[all …]
Dnetlink.c239 down_read(&wg->static_identity.lock); in wg_get_device_dump()
240 if (wg->static_identity.has_identity) { in wg_get_device_dump()
243 wg->static_identity.static_private) || in wg_get_device_dump()
246 wg->static_identity.static_public)) { in wg_get_device_dump()
247 up_read(&wg->static_identity.lock); in wg_get_device_dump()
251 up_read(&wg->static_identity.lock); in wg_get_device_dump()
396 down_read(&wg->static_identity.lock); in set_peer()
397 if (wg->static_identity.has_identity && in set_peer()
399 wg->static_identity.static_public, in set_peer()
406 up_read(&wg->static_identity.lock); in set_peer()
[all …]
Dnoise.h71 struct noise_static_identity *static_identity; member
96 struct noise_static_identity *static_identity,
115 struct noise_static_identity *static_identity,
Dcookie.c47 if (likely(checker->device->static_identity.has_identity)) { in wg_cookie_checker_precompute_device_keys()
49 checker->device->static_identity.static_public, in wg_cookie_checker_precompute_device_keys()
52 checker->device->static_identity.static_public, in wg_cookie_checker_precompute_device_keys()
Ddevice.h45 struct noise_static_identity static_identity; member
Ddevice.c262 memzero_explicit(&wg->static_identity, sizeof(wg->static_identity)); in wg_destruct()
316 init_rwsem(&wg->static_identity.lock); in wg_newlink()
Dpeer.c40 wg_noise_handshake_init(&peer->handshake, &wg->static_identity, in wg_peer_create()