diff options
author | beck <> | 2016-11-02 15:18:42 +0000 |
---|---|---|
committer | beck <> | 2016-11-02 15:18:42 +0000 |
commit | 8cc868305fe197edb9f01ce424e355d76be91b22 (patch) | |
tree | d759e28afc9aedffba6861487c1680a3f8e3331d /src/lib/libtls/Makefile | |
parent | 90c573eba184fe31184d14ce10367f810fa1d417 (diff) | |
download | openbsd-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/Makefile | 3 |
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 | ||
3 | CFLAGS+= -Wall -Werror -Wimplicit | 3 | CFLAGS+= -Wall -Werror -Wimplicit |
4 | CFLAGS+= -DLIBRESSL_INTERNAL | 4 | CFLAGS+= -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 | ||
25 | MAN= tls_init.3 | 26 | MAN= tls_init.3 |