From b28bcd3087cd32cc3213d71970d9cb335eef5b94 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Wed, 13 Feb 2019 16:28:28 +0000 Subject: Handle finished messages in TLSv1.3 client. This adds support for processing of the server finished message and generation of the client finished message. ok tb@ --- src/lib/libssl/tls13_handshake.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'src/lib/libssl/tls13_handshake.c') diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c index 3ebf1e9d73..630f81a8a8 100644 --- a/src/lib/libssl/tls13_handshake.c +++ b/src/lib/libssl/tls13_handshake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_handshake.c,v 1.26 2019/02/11 17:48:15 jsing Exp $ */ +/* $OpenBSD: tls13_handshake.c,v 1.27 2019/02/13 16:28:28 jsing Exp $ */ /* * Copyright (c) 2018-2019 Theo Buehler * Copyright (c) 2019 Joel Sing @@ -458,12 +458,6 @@ tls13_client_finished_recv(struct tls13_ctx *ctx) return 0; } -int -tls13_client_finished_send(struct tls13_ctx *ctx) -{ - return 0; -} - int tls13_client_key_update_send(struct tls13_ctx *ctx) { @@ -508,12 +502,6 @@ tls13_server_certificate_verify_send(struct tls13_ctx *ctx) return 0; } -int -tls13_server_finished_recv(struct tls13_ctx *ctx) -{ - return 0; -} - int tls13_server_finished_send(struct tls13_ctx *ctx) { -- cgit v1.2.3-55-g6feb