From dfcb2879ed4cb98147d3c6bcf56f7e6da34adacb Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 17 Jan 2019 06:32:12 +0000 Subject: Provide an extensible buffer implementation that uses a read callback. The read callback returns a TLS13_IO_* value on EOF, failure, want pollin or want pollout, or a positive value indicating the number of bytes read. This will be used by upcoming TLSv1.3 handshake message and record processing code, both of which need the ability to read a fixed size header, before extending the buffer to the number of bytes specified in the header. ok beck@ tb@ --- src/lib/libssl/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/lib/libssl/Makefile') diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 8923c05bd4..a1300bc979 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.44 2019/01/17 00:56:57 beck Exp $ +# $OpenBSD: Makefile,v 1.45 2019/01/17 06:32:12 jsing Exp $ .include .ifndef NOMAN @@ -34,7 +34,8 @@ SRCS= \ ssl_asn1.c ssl_txt.c ssl_algs.c \ bio_ssl.c ssl_err.c ssl_methods.c \ ssl_packet.c ssl_tlsext.c ssl_versions.c pqueue.c ssl_init.c \ - tls13_handshake.c tls13_key_schedule.c tls13_tlsext.c ssl_sigalgs.c + tls13_buffer.c tls13_handshake.c tls13_key_schedule.c tls13_tlsext.c \ + ssl_sigalgs.c SRCS+= s3_cbc.c SRCS+= bs_ber.c bs_cbb.c bs_cbs.c -- cgit v1.2.3-55-g6feb