diff options
author | jsing <> | 2020-08-30 15:40:20 +0000 |
---|---|---|
committer | jsing <> | 2020-08-30 15:40:20 +0000 |
commit | 09997f3d41692022beb138f1e238f51af93a8024 (patch) | |
tree | 18ad8015f1e0ba01f043e52b0e4feb24b04656f8 /src/lib/libssl/Makefile | |
parent | 3a0362608e329661831d8a0de2005821d2cc1fe0 (diff) | |
download | openbsd-09997f3d41692022beb138f1e238f51af93a8024.tar.gz openbsd-09997f3d41692022beb138f1e238f51af93a8024.tar.bz2 openbsd-09997f3d41692022beb138f1e238f51af93a8024.zip |
Start replacing the existing TLSv1.2 record layer.
This takes the same design/approach used in TLSv1.3 and provides an
opaque struct that is self contained and cannot reach back into other
layers. For now this just implements/replaces the writing of records
for DTLSv1/TLSv1.0/TLSv1.1/TLSv1.2. In doing so we stop copying the
plaintext into the same buffer that is used to transmit to the wire.
ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index c162e84b77..2e06f13e9c 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.66 2020/06/09 16:53:53 deraadt Exp $ | 1 | # $OpenBSD: Makefile,v 1.67 2020/08/30 15:40:19 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -69,6 +69,7 @@ SRCS= \ | |||
69 | ssl_versions.c \ | 69 | ssl_versions.c \ |
70 | t1_enc.c \ | 70 | t1_enc.c \ |
71 | t1_lib.c \ | 71 | t1_lib.c \ |
72 | tls12_record_layer.c \ | ||
72 | tls13_buffer.c \ | 73 | tls13_buffer.c \ |
73 | tls13_client.c \ | 74 | tls13_client.c \ |
74 | tls13_error.c \ | 75 | tls13_error.c \ |