aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/noise.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-11-01 20:05:15 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-11-01 20:08:14 +0100
commit662b948fec1549edd2cbec521a039fd2f9d34065 (patch)
treec614e53bc6d2493f5a0d1fe0b8f823709d616c79 /src/noise.h
parentpeer: kref is most likely to succeed (diff)
downloadwireguard-monolithic-historical-662b948fec1549edd2cbec521a039fd2f9d34065.tar.xz
wireguard-monolithic-historical-662b948fec1549edd2cbec521a039fd2f9d34065.zip
data: do not allow usage of keypair just before hash removal
Diffstat (limited to 'src/noise.h')
-rw-r--r--src/noise.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/noise.h b/src/noise.h
index ca865f8..a849dc9 100644
--- a/src/noise.h
+++ b/src/noise.h
@@ -105,6 +105,7 @@ void noise_init(void);
void noise_handshake_init(struct noise_handshake *handshake, struct noise_static_identity *static_identity, const u8 peer_public_key[static NOISE_PUBLIC_KEY_LEN], struct wireguard_peer *peer);
void noise_handshake_clear(struct noise_handshake *handshake);
void noise_keypair_put(struct noise_keypair *keypair);
+struct noise_keypair *noise_keypair_get(struct noise_keypair *keypair);
void noise_keypairs_clear(struct noise_keypairs *keypairs);
bool noise_received_with_keypair(struct noise_keypairs *keypairs, struct noise_keypair *received_keypair);