Rechercher dans le manuel MySQL
28.7.7.77 mysql_ssl_set()
bool mysql_ssl_set(MYSQL *mysql, const char *key, const
char *cert, const char *ca, const char *capath, const char
*cipher)
Description
mysql_ssl_set()
is used for
establishing encrypted connections using SSL. The
mysql
argument must be a valid connection
handler. Any unused SSL arguments may be given as
NULL
.
If used, mysql_ssl_set()
must
be called before
mysql_real_connect()
.
mysql_ssl_set()
does nothing
unless SSL support is enabled in the client library.
It is optional to call
mysql_ssl_set()
to obtain an
encrypted connection because by default, MySQL programs
attempt to connect using encryption if the server supports
encrypted connections, falling back to an unencrypted
connection if an encrypted connection cannot be established
(see Section 6.3.1, “Configuring MySQL to Use Encrypted Connections”).
mysql_ssl_set()
may be useful
to applications that must specify particular certificate and
key files, encryption ciphers, and so forth.
mysql_ssl_set()
specifies SSL
information such as certificate and key files for establishing
an encrypted connection if such connections are available, but
does not enforce any requirement that the connection obtained
be encrypted. To require an encrypted connection, use the
technique described in
Section 28.7.22, “C API Encrypted Connection Support”.
For additional security relative to that provided by the default encryption, clients can supply a CA certificate matching the one used by the server and enable host name identity verification. In this way, the server and client place their trust in the same CA certificate and the client verifies that the host to which it connected is the one intended. For details, see Section 28.7.22, “C API Encrypted Connection Support”.
mysql_ssl_set()
is a
convenience function that is essentially equivalent to this
set of mysql_options()
calls:
mysql_options(mysql, MYSQL_OPT_SSL_KEY, key);
mysql_options(mysql, MYSQL_OPT_SSL_CERT, cert);
mysql_options(mysql, MYSQL_OPT_SSL_CA, ca);
mysql_options(mysql, MYSQL_OPT_SSL_CAPATH, capath);
mysql_options(mysql, MYSQL_OPT_SSL_CIPHER, cipher);
Because of that equivalence, applications can, instead of
calling mysql_ssl_set()
, call
mysql_options()
directly,
omitting calls for those options for which the option value is
NULL
. Moreover,
mysql_options()
offers
encrypted-connection options not available using
mysql_ssl_set()
, such as
MYSQL_OPT_SSL_MODE
to specify the security
state of the connection, and
MYSQL_OPT_TLS_VERSION
to specify the
protocols the client permits for encrypted connections.
Arguments:
mysql
: The connection handler returned frommysql_init()
.key
: The path name of the client private key file.cert
: The path name of the client public key certificate file.ca
: The path name of the Certificate Authority (CA) certificate file. This option, if used, must specify the same certificate used by the server.capath
: The path name of the directory that contains trusted SSL CA certificate files.cipher
: The list of permissible ciphers for SSL encryption.
This function always returns 0
. If SSL
setup is incorrect, a subsequent
mysql_real_connect()
call
returns an error when you attempt to connect.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-mysql-ssl-set.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.