diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-06-08 00:46:20 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-06-08 00:46:20 +0200 |
commit | 2d8bfaab51c2dd42d73c348e238802912e870b22 (patch) | |
tree | c602138abc6aee099a9df1c6b5541ca9668e9b02 /client.c | |
parent | 8900036e927d757272b96625ab0a7018bf217533 (diff) |
moved client/server stream crypto init code into subroutines
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -65,9 +65,10 @@ enum recv_return protocol_request_server_helo(struct connection * const state, (void)processed; LOG(NOTICE, "Server HELLO with message: %.*s", sizeof(helo_pkt->server_message), helo_pkt->server_message); - crypto_secretstream_xchacha20poly1305_init_pull(&state->crypto_rx_state, - helo_pkt->client_rx_header, - state->session_keys->rx); + if (init_crypto_client(state, helo_pkt->client_rx_header, sizeof(helo_pkt->client_rx_header)) != 0) { + LOG(ERROR, "Client session keypair generation failed"); + return RECV_FATAL; + } if (ev_setup_generic_timer((struct ev_user_data *)state->user_data, PING_INTERVAL) != 0) { LOG(ERROR, "Timer init failed"); |