From 767ff39662be70f355eac7cf069fd9c23c34580d Mon Sep 17 00:00:00 2001 From: jsing <> Date: Wed, 5 Jan 2022 17:10:03 +0000 Subject: Rename tls13_key_share to tls_key_share. In preparation to use the key share code in both the TLSv1.3 and legacy stacks, rename tls13_key_share to tls_key_share, moving it into the shared handshake struct. Further changes will then allow the legacy stack to make use of the same code for ephemeral key exchange. ok inoguchi@ tb@ --- src/lib/libssl/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libssl/Makefile') diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 82e139911e..565a3f1543 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.72 2021/10/23 13:12:14 jsing Exp $ +# $OpenBSD: Makefile,v 1.73 2022/01/05 17:10:02 jsing Exp $ .include .ifndef NOMAN @@ -75,14 +75,14 @@ SRCS= \ tls13_handshake.c \ tls13_handshake_msg.c \ tls13_key_schedule.c \ - tls13_key_share.c \ tls13_legacy.c \ tls13_lib.c \ tls13_record.c \ tls13_record_layer.c \ tls13_server.c \ tls_buffer.c \ - tls_content.c + tls_content.c \ + tls_key_share.c HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h -- cgit v1.2.3-55-g6feb