From 5df2cd671a3bb55e3ec34638a6a36eef237c529f Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 30 Aug 2020 15:40:20 +0000 Subject: 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@ --- src/lib/libssl/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/libssl/Makefile') 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 @@ -# $OpenBSD: Makefile,v 1.66 2020/06/09 16:53:53 deraadt Exp $ +# $OpenBSD: Makefile,v 1.67 2020/08/30 15:40:19 jsing Exp $ .include .ifndef NOMAN @@ -69,6 +69,7 @@ SRCS= \ ssl_versions.c \ t1_enc.c \ t1_lib.c \ + tls12_record_layer.c \ tls13_buffer.c \ tls13_client.c \ tls13_error.c \ -- cgit v1.2.3-55-g6feb