summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authorjsing <>2020-03-10 17:15:02 +0000
committerjsing <>2020-03-10 17:15:02 +0000
commit3d8fba52e48acf9a2d891ddedcbec2353a83c093 (patch)
treebad7cb5716985b02413bdfde02ee013f17ab59a3 /src/lib/libssl/tls13_internal.h
parent4933192b832b483046f15d271150bd7c592ba9fc (diff)
downloadopenbsd-3d8fba52e48acf9a2d891ddedcbec2353a83c093.tar.gz
openbsd-3d8fba52e48acf9a2d891ddedcbec2353a83c093.tar.bz2
openbsd-3d8fba52e48acf9a2d891ddedcbec2353a83c093.zip
Remove some unnecessary handshake enums/functions.
Both session tickets and key updates are post-handshake handshake messages, which were originally included in the handshake code. ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index 76b1ebf914..053a7972a0 100644
--- a/src/lib/libssl/tls13_internal.h
+++ b/src/lib/libssl/tls13_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_internal.h,v 1.60 2020/02/05 16:42:29 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.61 2020/03/10 17:15:02 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org>
4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -304,8 +304,6 @@ int tls13_client_certificate_verify_recv(struct tls13_ctx *ctx, CBS *cbs);
304int tls13_client_finished_recv(struct tls13_ctx *ctx, CBS *cbs); 304int tls13_client_finished_recv(struct tls13_ctx *ctx, CBS *cbs);
305int tls13_client_finished_send(struct tls13_ctx *ctx, CBB *cbb); 305int tls13_client_finished_send(struct tls13_ctx *ctx, CBB *cbb);
306int tls13_client_finished_sent(struct tls13_ctx *ctx); 306int tls13_client_finished_sent(struct tls13_ctx *ctx);
307int tls13_client_key_update_send(struct tls13_ctx *ctx, CBB *cbb);
308int tls13_client_key_update_recv(struct tls13_ctx *ctx, CBS *cbs);
309int tls13_server_hello_recv(struct tls13_ctx *ctx, CBS *cbs); 307int tls13_server_hello_recv(struct tls13_ctx *ctx, CBS *cbs);
310int tls13_server_hello_send(struct tls13_ctx *ctx, CBB *cbb); 308int tls13_server_hello_send(struct tls13_ctx *ctx, CBB *cbb);
311int tls13_server_hello_sent(struct tls13_ctx *ctx); 309int tls13_server_hello_sent(struct tls13_ctx *ctx);