aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ct/Makefile.in
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-02-29 17:33:02 +0000
committerRob Percival <robpercival@google.com>2016-03-01 20:03:25 +0000
commit7d054e5ab2aeaead14c0c19b808d62221020b0e1 (patch)
tree655006eea9d0fe60879b36d09e9046be5a3749de /crypto/ct/Makefile.in
parent7852414967b87400b08bfdf321732cfbd07286e2 (diff)
downloadopenssl-7d054e5ab2aeaead14c0c19b808d62221020b0e1.tar.gz
CT policy validation
Specifies a callback that will, in the future, be used by the SSL code to decide whether to abort a connection on Certificate Transparency grounds. Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ct/Makefile.in')
-rw-r--r--crypto/ct/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/ct/Makefile.in b/crypto/ct/Makefile.in
index de122df863..0daec36544 100644
--- a/crypto/ct/Makefile.in
+++ b/crypto/ct/Makefile.in
@@ -15,10 +15,10 @@ CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
GENERAL=Makefile
LIB=$(TOP)/libcrypto.a
-LIBSRC= ct_b64.c ct_err.c ct_log.c ct_oct.c ct_prn.c ct_sct.c ct_sct_ctx.c \
- ct_vfy.c ct_x509v3.c
-LIBOBJ= ct_b64.o ct_err.o ct_log.o ct_oct.o ct_prn.o ct_sct.o ct_sct_ctx.o \
- ct_vfy.o ct_x509v3.o
+LIBSRC= ct_b64.c ct_err.c ct_log.c ct_oct.c ct_policy.c ct_prn.c ct_sct.c \
+ ct_sct_ctx.c ct_vfy.c ct_x509v3.c
+LIBOBJ= ct_b64.o ct_err.o ct_log.o ct_oct.o ct_policy.o ct_prn.o ct_sct.o \
+ ct_sct_ctx.o ct_vfy.o ct_x509v3.o
SRC= $(LIBSRC)