From 6947e0798044d26df9dfe0d3ce65dad70bc36d2a Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 20 Jan 2019 10:31:54 +0000 Subject: Provide an initial implementation of the TLS 1.3 record layer. This is entirely self-contained and knows nothing about SSL or BIO. The bottom of the stack is provided by wire read and write callbacks, with the API to the record layer primarily being via tls13_{read,write}_{application,handshake}_data(). This currently lacks some functionality, however will be worked on in tree. ok 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 b835d3f5ae..d23aaa7249 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.48 2019/01/19 04:08:06 jsing Exp $ +# $OpenBSD: Makefile,v 1.49 2019/01/20 10:31:54 jsing Exp $ .include .ifndef NOMAN @@ -16,7 +16,6 @@ CFLAGS+= -Wall -Wundef CFLAGS+= -Werror .endif CFLAGS+= -DLIBRESSL_INTERNAL - CFLAGS+= -I${.CURDIR} LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto @@ -65,7 +64,8 @@ SRCS= \ tls13_buffer.c \ tls13_handshake.c \ tls13_key_schedule.c \ - tls13_record.c + tls13_record.c \ + tls13_record_layer.c HDRS= dtls1.h srtp.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h -- cgit v1.2.3-55-g6feb