123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package ssltests;
- our @tests = (
- {
- name => "default",
- server => { },
- client => { },
- test => { "ExpectedResult" => "Success" },
- },
- {
- name => "Server signature algorithms bug",
- # Should have no effect as we aren't doing client auth
- server => { "ClientSignatureAlgorithms" => "PSS+SHA512:RSA+SHA512" },
- client => { "SignatureAlgorithms" => "PSS+SHA256:RSA+SHA256" },
- test => { "ExpectedResult" => "Success" },
- },
- {
- name => "verify-cert",
- server => { },
- client => {
- # Don't set up the client root file.
- "VerifyCAFile" => undef,
- },
- test => {
- "ExpectedResult" => "ClientFail",
- "ExpectedClientAlert" => "UnknownCA",
- },
- },
- );
|