summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_handshake.c
diff options
context:
space:
mode:
authorjsing <>2020-01-24 08:21:24 +0000
committerjsing <>2020-01-24 08:21:24 +0000
commit9cdf522cbbcfe7a838754388ced1226cb5f6440a (patch)
treeb029df2949c6e8b7fb725c02cd0e29b13384c989 /src/lib/libssl/tls13_handshake.c
parenta5c73b953c2cae57930e88d747efc6e34adbb9cb (diff)
downloadopenbsd-9cdf522cbbcfe7a838754388ced1226cb5f6440a.tar.gz
openbsd-9cdf522cbbcfe7a838754388ced1226cb5f6440a.tar.bz2
openbsd-9cdf522cbbcfe7a838754388ced1226cb5f6440a.zip
Complete the initial TLSv1.3 implementation.
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/tls13_handshake.c')
-rw-r--r--src/lib/libssl/tls13_handshake.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_handshake.c b/src/lib/libssl/tls13_handshake.c
index 2c5b72a912..29a22225f7 100644
--- a/src/lib/libssl/tls13_handshake.c
+++ b/src/lib/libssl/tls13_handshake.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_handshake.c,v 1.43 2020/01/24 06:45:09 jsing Exp $ */ 1/* $OpenBSD: tls13_handshake.c,v 1.44 2020/01/24 08:21:24 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org>
4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
@@ -141,6 +141,7 @@ struct tls13_handshake_action state_machine[] = {
141 .recv_preserve_transcript_hash = 1, 141 .recv_preserve_transcript_hash = 1,
142 .send_preserve_transcript_hash = 1, 142 .send_preserve_transcript_hash = 1,
143 .send = tls13_server_finished_send, 143 .send = tls13_server_finished_send,
144 .sent = tls13_server_finished_sent,
144 .recv = tls13_server_finished_recv, 145 .recv = tls13_server_finished_recv,
145 }, 146 },
146 [APPLICATION_DATA] = { 147 [APPLICATION_DATA] = {