summaryrefslogtreecommitdiffstats
path: root/apps/s_apps.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-12-02 16:16:28 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-01-18 14:37:14 +0000
commite318431e5408a341b582cf14159220a0d1346886 (patch)
tree10a30bf9cbdaa4b0b160845c9a79b1d9f9c79ac3 /apps/s_apps.h
parent6a10f38daacb59fa3d61c61b91961fb132c9b193 (diff)
New option to add CRLs for s_client and s_server.
Diffstat (limited to 'apps/s_apps.h')
-rw-r--r--apps/s_apps.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/s_apps.h b/apps/s_apps.h
index 9bc61cea3a..92bb4949f9 100644
--- a/apps/s_apps.h
+++ b/apps/s_apps.h
@@ -196,7 +196,9 @@ int args_ssl(char ***pargs, int *pargc, SSL_CONF_CTX *cctx,
int *badarg, BIO *err, STACK_OF(OPENSSL_STRING) **pstr);
int args_ssl_call(SSL_CTX *ctx, BIO *err, SSL_CONF_CTX *cctx,
STACK_OF(OPENSSL_STRING) *str, int no_ecdhe, int no_jpake);
-int ssl_load_stores(SSL_CTX *sctx,
+int ssl_ctx_add_crls(SSL_CTX *ctx, STACK_OF(X509_CRL) *crls);
+int ssl_load_stores(SSL_CTX *ctx,
const char *vfyCApath, const char *vfyCAfile,
- const char *chCApath, const char *chCAfile);
+ const char *chCApath, const char *chCAfile,
+ STACK_OF(X509_CRL) *crls);
#endif