aboutsummaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-31 13:33:57 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-31 13:33:57 +0000
commit245d2ee3d00eb72a13bc4f60a46aaaeba127056f (patch)
tree20bdba663014618a99716013ea8bd58595de021f /apps/apps.h
parent4b4ba6a8878dec6d8c0e0d052addcc9a62950453 (diff)
downloadopenssl-245d2ee3d00eb72a13bc4f60a46aaaeba127056f.tar.gz
Add option to allow in-band CRL loading in verify utility. Add function
load_crls and tidy up load_certs. Remove useless purpose variable from verify utility: now done with args_verify.
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 35a0266414..596a39aceb 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -251,6 +251,8 @@ EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin,
const char *pass, ENGINE *e, const char *key_descrip);
STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
const char *pass, ENGINE *e, const char *cert_descrip);
+STACK_OF(X509_CRL) *load_crls(BIO *err, const char *file, int format,
+ const char *pass, ENGINE *e, const char *cert_descrip);
X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath);
#ifndef OPENSSL_NO_ENGINE
ENGINE *setup_engine(BIO *err, const char *engine, int debug);