aboutsummaryrefslogtreecommitdiff
path: root/common-sodium.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-08 00:46:20 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-08 00:46:20 +0200
commit2d8bfaab51c2dd42d73c348e238802912e870b22 (patch)
treec602138abc6aee099a9df1c6b5541ca9668e9b02 /common-sodium.c
parent8900036e927d757272b96625ab0a7018bf217533 (diff)
moved client/server stream crypto init code into subroutines
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'common-sodium.c')
-rw-r--r--common-sodium.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/common-sodium.c b/common-sodium.c
index 4398782..a69196d 100644
--- a/common-sodium.c
+++ b/common-sodium.c
@@ -48,6 +48,8 @@ struct longterm_keypair * generate_keypair_from_secretkey_hexstr_sodium(char con
goto error;
}
+ sodium_mlock(keypair, sizeof(*keypair));
+
return keypair;
error:
free(keypair);
@@ -104,3 +106,39 @@ int init_sockaddr_inet(struct sockaddr_in * const sin,
return 0;
}
+
+int init_crypto_server(struct connection * const state,
+ unsigned char const * const server_rx_header,
+ size_t server_rx_header_size)
+{
+ if (server_rx_header_size != crypto_secretstream_xchacha20poly1305_HEADERBYTES) {
+ LOG(ERROR,
+ "Invalid Sodium RX header size: %zu != %zu",
+ server_rx_header_size,
+ crypto_secretstream_xchacha20poly1305_HEADERBYTES);
+ return 1;
+ }
+ if (generate_session_keypair_sodium(state) != 0) {
+ LOG(ERROR, "Client session keypair generation failed");
+ return 1;
+ }
+ crypto_secretstream_xchacha20poly1305_init_pull(&state->crypto_rx_state, server_rx_header, state->session_keys->rx);
+
+ return 0;
+}
+
+int init_crypto_client(struct connection * const state,
+ unsigned char const * const client_rx_header,
+ size_t client_rx_header_size)
+{
+ if (client_rx_header_size != crypto_secretstream_xchacha20poly1305_HEADERBYTES) {
+ LOG(ERROR,
+ "Invalid Sodium RX header size: %zu != %zu",
+ client_rx_header_size,
+ crypto_secretstream_xchacha20poly1305_HEADERBYTES);
+ return 1;
+ }
+ crypto_secretstream_xchacha20poly1305_init_pull(&state->crypto_rx_state, client_rx_header, state->session_keys->rx);
+
+ return 0;
+}