diff options
| author | jsing <> | 2019-01-19 02:53:54 +0000 |
|---|---|---|
| committer | jsing <> | 2019-01-19 02:53:54 +0000 |
| commit | 6ce62f3396dcfb1ee5cf51fed9e8477e787d0a77 (patch) | |
| tree | 443b5e635b8534df280f5fb625336515a38ff99b /src/lib/libssl/Makefile | |
| parent | 4b234df63de43710308e9af8e6bdce1f3d9a5d81 (diff) | |
| download | openbsd-6ce62f3396dcfb1ee5cf51fed9e8477e787d0a77.tar.gz openbsd-6ce62f3396dcfb1ee5cf51fed9e8477e787d0a77.tar.bz2 openbsd-6ce62f3396dcfb1ee5cf51fed9e8477e787d0a77.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 | ||
