summaryrefslogtreecommitdiff
path: root/src/lib/libtls/Makefile
diff options
context:
space:
mode:
authorbeck <>2016-11-02 15:18:42 +0000
committerbeck <>2016-11-02 15:18:42 +0000
commit8cc868305fe197edb9f01ce424e355d76be91b22 (patch)
treed759e28afc9aedffba6861487c1680a3f8e3331d /src/lib/libtls/Makefile
parent90c573eba184fe31184d14ce10367f810fa1d417 (diff)
downloadopenbsd-8cc868305fe197edb9f01ce424e355d76be91b22.tar.gz
openbsd-8cc868305fe197edb9f01ce424e355d76be91b22.tar.bz2
openbsd-8cc868305fe197edb9f01ce424e355d76be91b22.zip
Add OCSP client side support to libtls.
- Provide access to certificate OCSP URL - Provide ability to check a raw OCSP reply against an established TLS ctx - Check and validate OCSP stapling info in the TLS handshake if a stapled OCSP response is provided.` Add example code to show OCSP URL and stapled info into netcat. ok jsing@
Diffstat (limited to 'src/lib/libtls/Makefile')
-rw-r--r--src/lib/libtls/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/Makefile b/src/lib/libtls/Makefile
index 245b1def6e..f90c57d53f 100644
--- a/src/lib/libtls/Makefile
+++ b/src/lib/libtls/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.25 2016/09/19 03:25:22 bcook Exp $ 1# $OpenBSD: Makefile,v 1.26 2016/11/02 15:18:42 beck Exp $
2 2
3CFLAGS+= -Wall -Werror -Wimplicit 3CFLAGS+= -Wall -Werror -Wimplicit
4CFLAGS+= -DLIBRESSL_INTERNAL 4CFLAGS+= -DLIBRESSL_INTERNAL
@@ -20,6 +20,7 @@ SRCS= tls.c \
20 tls_peer.c \ 20 tls_peer.c \
21 tls_server.c \ 21 tls_server.c \
22 tls_util.c \ 22 tls_util.c \
23 tls_ocsp.c \
23 tls_verify.c 24 tls_verify.c
24 25
25MAN= tls_init.3 26MAN= tls_init.3