mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
53ec358606
Add basic tests for providers when using OpenSSL 3.x. PR-URL: https://github.com/nodejs/node/pull/44148 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
16 lines
281 B
INI
16 lines
281 B
INI
nodejs_conf = nodejs_init
|
|
|
|
[nodejs_init]
|
|
providers = provider_sect
|
|
|
|
# List of providers to load
|
|
[provider_sect]
|
|
default = default_sect
|
|
legacy = legacy_sect
|
|
|
|
[default_sect]
|
|
activate = 1
|
|
|
|
[legacy_sect]
|
|
# 'activate' line intentionally omitted -- legacy provider should not be loaded.
|