Good morning,
Whilst testing SSL of a MariaDB server version 10.4.8 running Linux from a Windows 10 machine I noted that connection using MySQL client (mysql-8.0.18-winx64) connects successfully, however connections with MariaDB client (mariadb-10.4.8-winx64) fails.
C:\temp\mariadb-10.4.8-winx64>mysql --user=penzk001 --password --host=<hostname> --port=3306 --tls-version=TLSv1.2 --ssl-ca=c:\temp\CACert.pem
Enter password: ********
ERROR 2026 (HY000): Unknown SSL error (0x80090308)
C:\temp\mariadb-10.4.8-winx64\bin> cd ..\mysql-8.0.18-winx64\binC:\temp\mysql-8.0.18-winx64\bin> mysql --user=penzk001 --password --host=<hostname> --port=3306 --tls-version=TLSv1.2 --ssl-ca=c:\temp\CACert.pem
Welcome to the MySQL monitor. Commands end with ; or \g.
...
mysql>\s
...
SSL: Cipher in use is DHE-RSA-AES128-GCM-SHA256
...
mysql>
To ensure that the SSL certificate is valid I also tried "--ssl-mode=VERIFY_IDENTITY" with the mysql-8.0.18 client and it worked fine.
Regards