summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2019-01-21 09:10:58 +0000
committerjsing <>2019-01-21 09:10:58 +0000
commit3ef5fc080daaeca210db9bb6c0ec9e6cc0ca6b04 (patch)
treeff520e13188df3c74d950537932fb1d5a6d7b898 /src/lib/libssl/Makefile
parent549758b49616a2ed2f8e76f1ec804a664cab843e (diff)
downloadopenbsd-3ef5fc080daaeca210db9bb6c0ec9e6cc0ca6b04.tar.gz
openbsd-3ef5fc080daaeca210db9bb6c0ec9e6cc0ca6b04.tar.bz2
openbsd-3ef5fc080daaeca210db9bb6c0ec9e6cc0ca6b04.zip
Provide TLS 1.3 cipher AEAD/hash and legacy I/O handling functions.
Provide functionality for determining AEADs and hashes for TLS 1.3 ciphers. Also provide wire read/write callbacks that interface with BIO and functions that interface between SSL_read/SSL_write and the TLS 1.3 record layer API. ok tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index 12cfd3d4f0..1bb3a0e78d 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.50 2019/01/20 12:27:34 jsing Exp $ 1# $OpenBSD: Makefile,v 1.51 2019/01/21 09:10:58 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -65,6 +65,7 @@ SRCS= \
65 tls13_handshake.c \ 65 tls13_handshake.c \
66 tls13_handshake_msg.c \ 66 tls13_handshake_msg.c \
67 tls13_key_schedule.c \ 67 tls13_key_schedule.c \
68 tls13_lib.c \
68 tls13_record.c \ 69 tls13_record.c \
69 tls13_record_layer.c 70 tls13_record_layer.c
70 71