• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 # Use this in order to automatically load providers.
2nodejs_conf = openssl_init
3
4# Optionally include a file that is generated by the OpenSSL fipsinstall
5# application. This file contains configuration data required by the OpenSSL
6# fips provider. It contains a named section e.g. [fips_sect] which is
7# referenced from the [provider_sect] below.
8# Refer to the OpenSSL security policy for more information.
9# .include fipsmodule.cnf
10
11[openssl_init]
12providers = provider_sect
13
14# List of providers to load
15[provider_sect]
16default = default_sect
17# The fips section name should match the section name inside the
18# included fipsmodule.cnf.
19# fips = fips_sect
20
21# If no providers are activated explicitly, the default one is activated implicitly.
22# See man 7 OSSL_PROVIDER-default for more details.
23#
24# If you add a section explicitly activating any other provider(s), you most
25# probably need to explicitly activate the default provider, otherwise it
26# becomes unavailable in openssl.  As a consequence applications depending on
27# OpenSSL may not work correctly which could lead to significant system
28# problems including inability to remotely access the system.
29[default_sect]
30# activate = 1
31