summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-04-06 18:23:25 +0100
committerMatt Caswell <matt@openssl.org>2020-04-15 11:24:13 +0100
commit8755b085244c792bc8a78b38984b0f4061bc9f91 (patch)
tree02526bbd66d11ae50a63e4439a339703b7f09567 /include
parentf13fdeb321f0f6bf67e2c93209bba70c8c4fcbec (diff)
Teach the OSSL_STORE code about libctx
We restrict this to just the PrivateKey loading code at the moment. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11494)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/store.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/crypto/store.h b/include/crypto/store.h
index 8f4757d9c2..ea207d83df 100644
--- a/include/crypto/store.h
+++ b/include/crypto/store.h
@@ -20,7 +20,8 @@
* as usual with OSSLSTORE_load() and OSSLSTORE_eof().
*/
OSSL_STORE_CTX *ossl_store_attach_pem_bio(BIO *bp, const UI_METHOD *ui_method,
- void *ui_data);
+ void *ui_data, OPENSSL_CTX *libctx,
+ const char *propq);
int ossl_store_detach_pem_bio(OSSL_STORE_CTX *ctx);
void ossl_store_cleanup_int(void);