diff options
author | 2019-02-13 16:28:28 +0000 | |
---|---|---|
committer | 2019-02-13 16:28:28 +0000 | |
commit | 61d658999aa7e583d5032e13db1924f28acef89c (patch) | |
tree | 8ac8f6905c77d7a36db84ac68e2f90f2fce53dd3 /lib/libssl/tls13_handshake.c | |
parent | Also remove tbl files from CLEANFILES now they are not generated. (diff) | |
download | wireguard-openbsd-61d658999aa7e583d5032e13db1924f28acef89c.tar.xz wireguard-openbsd-61d658999aa7e583d5032e13db1924f28acef89c.zip |
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@
Diffstat (limited to 'lib/libssl/tls13_handshake.c')
-rw-r--r-- | lib/libssl/tls13_handshake.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/lib/libssl/tls13_handshake.c b/lib/libssl/tls13_handshake.c index 3ebf1e9d737..630f81a8a83 100644 --- a/lib/libssl/tls13_handshake.c +++ b/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 <tb@openbsd.org> * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> @@ -459,12 +459,6 @@ tls13_client_finished_recv(struct tls13_ctx *ctx) } int -tls13_client_finished_send(struct tls13_ctx *ctx) -{ - return 0; -} - -int tls13_client_key_update_send(struct tls13_ctx *ctx) { return 0; @@ -509,12 +503,6 @@ tls13_server_certificate_verify_send(struct tls13_ctx *ctx) } int -tls13_server_finished_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int tls13_server_finished_send(struct tls13_ctx *ctx) { return 0; |