mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
91a77cbf66
Ensure that, with the modulepath setting set in a config field, that we are able to load a provider from the path relative to OPENSSL_MODULES Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24025)
23 lines
356 B
INI
23 lines
356 B
INI
openssl_conf = openssl_init
|
|
|
|
# Comment out the next line to ignore configuration errors
|
|
config_diagnostics = 1
|
|
|
|
[openssl_init]
|
|
providers = provider_sect
|
|
|
|
[provider_sect]
|
|
default = default_sect
|
|
legacy = legacy_sect
|
|
test = test_sect
|
|
|
|
[test_sect]
|
|
module = ../test/p_test.so
|
|
activate = false
|
|
|
|
[default_sect]
|
|
activate = true
|
|
|
|
[legacy_sect]
|
|
activate = false
|