mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
433deaffce
The default is openssl.cnf The project seems to prefer xxx.conf these days, but we should use the default convention. Rename all foo.conf (except for Configurations) to foo.cnf Fixes #11174 Reviewed-by: Paul Yang <kaishen.yy@antfin.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11176)
35 lines
663 B
INI
35 lines
663 B
INI
# Generated with generate_ssl_tests.pl
|
|
|
|
num_tests = 1
|
|
|
|
test-0 = 0-default
|
|
# ===========================================================
|
|
|
|
[0-default]
|
|
ssl_conf = 0-default-ssl
|
|
|
|
[0-default-ssl]
|
|
server = 0-default-server
|
|
client = 0-default-client
|
|
|
|
[0-default-server]
|
|
Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
|
|
CipherString = DEFAULT
|
|
MaxProtocol = TLSv1.3
|
|
MinProtocol = TLSv1.3
|
|
PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
|
|
RecordPadding = 64
|
|
|
|
[0-default-client]
|
|
CipherString = DEFAULT
|
|
MaxProtocol = TLSv1.3
|
|
MinProtocol = TLSv1.3
|
|
RecordPadding = 11
|
|
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
|
|
VerifyMode = Peer
|
|
|
|
[test-0]
|
|
ExpectedResult = Success
|
|
|
|
|