Secure connections to MySQL database

Does anyone know if Orthanc supports encrypted connections to a MySQL database?

I see how to set up SSL for the API but nothing about configuring a connection to the database by, for example, supplying the path to a certificate.pem file (as one would using the mysql client ssl-ca option, for example)

Hi Dave,

No, right now, the MySQL plugin does not support SSL to connect to the DB.

Note for developers: that would require some extra calls to my_sql_options() before the call to mysql_real_connect() in https://hg.orthanc-server.com/orthanc-databases/file/tip/Framework/MySQL/MySQLDatabase.cpp#l146 and of course adding new configuration file entries.