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 /server.c | |
parent | 8900036e927d757272b96625ab0a7018bf217533 (diff) |
moved client/server stream crypto init code into subroutines
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -66,14 +66,10 @@ enum recv_return protocol_request_client_auth(struct connection * const state, } log_bin2hex_sodium("Client AUTH with PublicKey", auth_pkt->client_publickey, sizeof(auth_pkt->client_publickey)); - - if (generate_session_keypair_sodium(state) != 0) { + if (init_crypto_server(state, auth_pkt->server_rx_header, sizeof(auth_pkt->server_rx_header)) != 0) { LOG(ERROR, "Client session keypair generation failed"); return RECV_FATAL; } - crypto_secretstream_xchacha20poly1305_init_pull(&state->crypto_rx_state, - auth_pkt->server_rx_header, - state->session_keys->rx); if (ev_protocol_server_helo(state, "Welcome.") != 0) { LOG(ERROR, "Server AUTH response failed"); |