1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

enable TLSv1.0 in WolfSSL

This commit is contained in:
Sergei Golubchik
2019-06-17 23:12:42 +02:00
parent e79b9005f1
commit e46b87aaed
5 changed files with 22 additions and 1 deletions

View File

@ -80,6 +80,8 @@ sub skip_combinations {
$_=<$f>;
$skip{'main/tls_version.test'} = "TLSv1.1 disabled in $openssl_cnf"
if /^\s*MinProtocol\s*=\s*TLSv1.[2-9]/m;
$skip{'main/tls_version1.test'} = "TLSv1.0 disabled in $openssl_cnf"
if /^\s*MinProtocol\s*=\s*TLSv1.[1-9]/m;
}
%skip;