diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2022-01-05 17:10:04 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2022-01-05 17:10:04 +0000 |
commit | c4aaa06084079d3d0d02d00d8b230c04abe49ac7 (patch) | |
tree | 0c3fb43d67d91f5798392f615db02f3489197e83 /lib/libssl/Makefile | |
parent | c45210e735f6ca537ee7dad56f4195d148d694ea (diff) |
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@
Diffstat (limited to 'lib/libssl/Makefile')
-rw-r--r-- | lib/libssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile index 82e139911e7..565a3f15433 100644 --- a/lib/libssl/Makefile +++ b/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 <bsd.own.mk> .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 |