1 | openssl_conf = openssl_init
|
---|
2 |
|
---|
3 | # Comment out the next line to ignore configuration errors
|
---|
4 | config_diagnostics = 1
|
---|
5 |
|
---|
6 | .include fipsmodule.cnf
|
---|
7 |
|
---|
8 | [openssl_init]
|
---|
9 | providers = provider_sect
|
---|
10 | # You MUST uncomment the following line to operate in a FIPS approved manner,
|
---|
11 | # It is commented out here purely for testing purposes.
|
---|
12 | #alg_section = evp_properties
|
---|
13 |
|
---|
14 | [evp_properties]
|
---|
15 | default_properties = "fips=yes"
|
---|
16 |
|
---|
17 | [provider_sect]
|
---|
18 | fips = fips_sect
|
---|
19 | base = base_sect
|
---|
20 |
|
---|
21 | [base_sect]
|
---|
22 | activate = 1
|
---|