summaryrefslogtreecommitdiffstats
path: root/include/internal/provider.h
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-18 09:16:26 +1000
committerPauli <ppzgs1@gmail.com>2021-02-23 23:24:41 +1000
commit299f5ff3b5f2a5a9b5666e36a6a01fc430de9198 (patch)
treea522f985b02749c53b628f193c767de3c9fb93f6 /include/internal/provider.h
parent332a245c04dff95f81cfa1f77e0f8a935794f5ee (diff)
provider: add option to load a provider without disabling the fallbacks.
Add an argument to PROVIDER_try_load() that permits a provider to be loaded without changing the fallback status. This is useful when an additional provider needs to be loaded without perturbing any other setup. E.g. adding mock providers as part of unit testing. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13652)
Diffstat (limited to 'include/internal/provider.h')
-rw-r--r--include/internal/provider.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/provider.h b/include/internal/provider.h
index a91c515f04..fbe3154b53 100644
--- a/include/internal/provider.h
+++ b/include/internal/provider.h
@@ -49,7 +49,7 @@ int ossl_provider_disable_fallback_loading(OSSL_LIB_CTX *libctx);
* Activate the Provider
* If the Provider is a module, the module will be loaded
*/
-int ossl_provider_activate(OSSL_PROVIDER *prov);
+int ossl_provider_activate(OSSL_PROVIDER *prov, int retain_fallbacks);
int ossl_provider_deactivate(OSSL_PROVIDER *prov);
/* Check if the provider is available (activated) */
int ossl_provider_available(OSSL_PROVIDER *prov);