Try starting MySQL with the option --ssl:
mysqld --ssl --help
If the server does not support SSL, you will see an error message:
[ERROR] mysqld: unknown option '--ssl'
On a running server, you can check the variables have_sslor have_openssl:
mysql> SHOW VARIABLES LIKE 'have_ssl';
mysql> SHOW VARIABLES LIKE 'have_openssl';