1# Generated with generate_ssl_tests.pl
2
3num_tests = 3
4
5test-0 = 0-default
6test-1 = 1-Server signature algorithms bug
7test-2 = 2-verify-cert
8# ===========================================================
9
10[0-default]
11ssl_conf = 0-default-ssl
12
13[0-default-ssl]
14server = 0-default-server
15client = 0-default-client
16
17[0-default-server]
18Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
19CipherString = DEFAULT
20PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
21
22[0-default-client]
23CipherString = DEFAULT
24VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
25VerifyMode = Peer
26
27[test-0]
28ExpectedResult = Success
29
30
31# ===========================================================
32
33[1-Server signature algorithms bug]
34ssl_conf = 1-Server signature algorithms bug-ssl
35
36[1-Server signature algorithms bug-ssl]
37server = 1-Server signature algorithms bug-server
38client = 1-Server signature algorithms bug-client
39
40[1-Server signature algorithms bug-server]
41Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
42CipherString = DEFAULT
43ClientSignatureAlgorithms = PSS+SHA512:RSA+SHA512
44PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
45
46[1-Server signature algorithms bug-client]
47CipherString = DEFAULT
48SignatureAlgorithms = PSS+SHA256:RSA+SHA256
49VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
50VerifyMode = Peer
51
52[test-1]
53ExpectedResult = Success
54
55
56# ===========================================================
57
58[2-verify-cert]
59ssl_conf = 2-verify-cert-ssl
60
61[2-verify-cert-ssl]
62server = 2-verify-cert-server
63client = 2-verify-cert-client
64
65[2-verify-cert-server]
66Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
67CipherString = DEFAULT
68PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
69
70[2-verify-cert-client]
71CipherString = DEFAULT
72VerifyMode = Peer
73
74[test-2]
75ExpectedClientAlert = UnknownCA
76ExpectedResult = ClientFail
77
78
79