diff options
author | jsing <> | 2019-01-19 02:53:54 +0000 |
---|---|---|
committer | jsing <> | 2019-01-19 02:53:54 +0000 |
commit | 6a367516df1cd7a6eb819c9bc94f4e4cb1d4f0eb (patch) | |
tree | 443b5e635b8534df280f5fb625336515a38ff99b /src/lib/libssl/Makefile | |
parent | 9f5c0205159ecdf058272249e3a756589faa7f3b (diff) | |
download | openbsd-6a367516df1cd7a6eb819c9bc94f4e4cb1d4f0eb.tar.gz openbsd-6a367516df1cd7a6eb819c9bc94f4e4cb1d4f0eb.tar.bz2 openbsd-6a367516df1cd7a6eb819c9bc94f4e4cb1d4f0eb.zip |
Provide a TLS record handling implementation.
This is a self-contained struct and set of functions that knows how to
decode and read a TLS record from data supplied via a read callback, and
send itself via a write callback.
This will soon be used to build the TLSv1.3 record layer handling code.
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 9fc010d534..a5a1f2927f 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.46 2019/01/18 03:41:30 beck Exp $ | 1 | # $OpenBSD: Makefile,v 1.47 2019/01/19 02:53:54 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -35,7 +35,7 @@ SRCS= \ | |||
35 | bio_ssl.c ssl_err.c ssl_methods.c \ | 35 | bio_ssl.c ssl_err.c ssl_methods.c \ |
36 | ssl_packet.c ssl_tlsext.c ssl_versions.c pqueue.c ssl_init.c \ | 36 | ssl_packet.c ssl_tlsext.c ssl_versions.c pqueue.c ssl_init.c \ |
37 | tls13_buffer.c tls13_handshake.c tls13_key_schedule.c \ | 37 | tls13_buffer.c tls13_handshake.c tls13_key_schedule.c \ |
38 | ssl_sigalgs.c | 38 | tls13_record.c ssl_sigalgs.c |
39 | SRCS+= s3_cbc.c | 39 | SRCS+= s3_cbc.c |
40 | SRCS+= bs_ber.c bs_cbb.c bs_cbs.c | 40 | SRCS+= bs_ber.c bs_cbb.c bs_cbs.c |
41 | 41 | ||