summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2019-01-20 12:27:34 +0000
committerjsing <>2019-01-20 12:27:34 +0000
commitaeeeeb391d5e90f65ff75b386123ce886b4af8ee (patch)
tree9054e9c1118082810aad468b78284ac211daca04 /src/lib/libssl/Makefile
parent7d4c5df49f29866dec345d1ed3420715c776e9e1 (diff)
downloadopenbsd-aeeeeb391d5e90f65ff75b386123ce886b4af8ee.tar.gz
openbsd-aeeeeb391d5e90f65ff75b386123ce886b4af8ee.tar.bz2
openbsd-aeeeeb391d5e90f65ff75b386123ce886b4af8ee.zip
Provide a handshake message handling implementation for TLS 1.3.
It receives handshake messages by reading and parsing data from the record layer. It also provides support for building and sending handshake messages. 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 d23aaa7249..12cfd3d4f0 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.49 2019/01/20 10:31:54 jsing Exp $ 1# $OpenBSD: Makefile,v 1.50 2019/01/20 12:27:34 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -63,6 +63,7 @@ SRCS= \
63 t1_lib.c \ 63 t1_lib.c \
64 tls13_buffer.c \ 64 tls13_buffer.c \
65 tls13_handshake.c \ 65 tls13_handshake.c \
66 tls13_handshake_msg.c \
66 tls13_key_schedule.c \ 67 tls13_key_schedule.c \
67 tls13_record.c \ 68 tls13_record.c \
68 tls13_record_layer.c 69 tls13_record_layer.c