summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-07-26 09:21:29 +0200
committerRichard Levitte <levitte@openssl.org>2020-08-24 10:02:25 +0200
commitfaa64bca9f59b4390aed93dca75e53c3cacddc4a (patch)
tree934482954c04533de9caa880884f7f563fcef969 /include
parenta517edec0385280e31e2dc2912301501e6b0c4a3 (diff)
STORE: Add missing function OSSL_STORE_LOADER_set_open_with_libctx()
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12512)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/store.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/openssl/store.h b/include/openssl/store.h
index b75c79868c..64a3667231 100644
--- a/include/openssl/store.h
+++ b/include/openssl/store.h
@@ -258,6 +258,9 @@ typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_with_libctx_fn)
int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader,
OSSL_STORE_open_fn open_function);
+int OSSL_STORE_LOADER_set_open_with_libctx
+ (OSSL_STORE_LOADER *loader,
+ OSSL_STORE_open_with_libctx_fn open_with_libctx_function);
typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_attach_fn)
(const OSSL_STORE_LOADER *loader, BIO *bio,
OPENSSL_CTX *libctx, const char *propq,