Closed Mytherin closed 2 months ago
Implements #71
This PR adds the MySQL SSL connection parameters
ssl_mode
disabled, required, verify_ca, verify_identity or preferred
preferred
ssl_ca
ssl_capath
ssl_cert
ssl_cipher
ssl_crl
ssl_crlpath
ssl_key
Implements #71
This PR adds the MySQL SSL connection parameters
ssl_mode
: The security state to use for the connection to the server:disabled, required, verify_ca, verify_identity or preferred
(default:preferred
)ssl_ca
: The path name of the Certificate Authority (CA) certificate file.ssl_capath
: The path name of the directory that contains trusted SSL CA certificate files.ssl_cert
: The path name of the client public key certificate file.ssl_cipher
: The list of permissible ciphers for SSL encryption.ssl_crl
: The path name of the file containing certificate revocation lists.ssl_crlpath
: The path name of the directory that contains files containing certificate revocation lists.ssl_key
: The path name of the client private key file.