aboutsummaryrefslogtreecommitdiff
path: root/test/sysdefault.cnf
AgeCommit message (Collapse)AuthorFilesLines
2021-08-05Add oid_section to sysdefault.cnf to test adding new oidsTomas Mraz1-0/+4
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16210)
2021-08-04Add config_diagnostics to our configuration files.Pauli1-0/+3
The change to a more configuration based approach to enable FIPS mode operation highlights a shortcoming in the default should do something approach we've taken for bad configuration files. Currently, a bad configuration file will be automatically loaded and once the badness is detected, it will silently stop processing the configuration and continue normal operations. This is good for remote servers, allowing changes to be made without bricking things. It's bad when a user thinks they've configured what they want but got something wrong and it still appears to work. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/16171)
2018-03-19Apply system_default configuration on SSL_CTX_new().Tomas Mraz1-0/+15
When SSL_CTX is created preinitialize it with system default configuration from system_default section. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4848)