diff options
| author | jsing <> | 2022-01-05 17:10:03 +0000 |
|---|---|---|
| committer | jsing <> | 2022-01-05 17:10:03 +0000 |
| commit | 767ff39662be70f355eac7cf069fd9c23c34580d (patch) | |
| tree | bf1d8f80a603da1e77e6fec1a2697b878680932b /src/lib/libssl/Makefile | |
| parent | 2a4d455b5a48685d7473bacd6643c5f7fdfbe18a (diff) | |
| download | openbsd-767ff39662be70f355eac7cf069fd9c23c34580d.tar.gz openbsd-767ff39662be70f355eac7cf069fd9c23c34580d.tar.bz2 openbsd-767ff39662be70f355eac7cf069fd9c23c34580d.zip | |
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 'src/lib/libssl/Makefile')
| -rw-r--r-- | src/lib/libssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.72 2021/10/23 13:12:14 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.73 2022/01/05 17:10:02 jsing Exp $ |
| 2 | 2 | ||
| 3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
| 4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
| @@ -75,14 +75,14 @@ SRCS= \ | |||
| 75 | tls13_handshake.c \ | 75 | tls13_handshake.c \ |
| 76 | tls13_handshake_msg.c \ | 76 | tls13_handshake_msg.c \ |
| 77 | tls13_key_schedule.c \ | 77 | tls13_key_schedule.c \ |
| 78 | tls13_key_share.c \ | ||
| 79 | tls13_legacy.c \ | 78 | tls13_legacy.c \ |
| 80 | tls13_lib.c \ | 79 | tls13_lib.c \ |
| 81 | tls13_record.c \ | 80 | tls13_record.c \ |
| 82 | tls13_record_layer.c \ | 81 | tls13_record_layer.c \ |
| 83 | tls13_server.c \ | 82 | tls13_server.c \ |
| 84 | tls_buffer.c \ | 83 | tls_buffer.c \ |
| 85 | tls_content.c | 84 | tls_content.c \ |
| 85 | tls_key_share.c | ||
| 86 | 86 | ||
| 87 | HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h | 87 | HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h |
| 88 | 88 | ||
