You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
3.7 KiB
203 lines
3.7 KiB
/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License, version 2.0,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is also distributed with certain software (including
|
|
but not limited to OpenSSL) that is licensed under separate terms,
|
|
as designated in a particular file or component or in included license
|
|
documentation. The authors of MySQL hereby grant you an additional
|
|
permission to link the program and your derivative works with the
|
|
separately licensed software that they have included with MySQL.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License, version 2.0, for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
|
|
|
/**
|
|
@file include/sslopt-longopts.h
|
|
*/
|
|
|
|
#if defined(HAVE_OPENSSL)
|
|
#ifndef MYSQL_SERVER
|
|
{"ssl-mode",
|
|
OPT_SSL_MODE,
|
|
"SSL connection mode.",
|
|
0,
|
|
0,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
#else
|
|
{"ssl",
|
|
OPT_SSL_SSL,
|
|
"If set to ON, this option enforces that SSL is established before client "
|
|
"attempts to authenticate to the server. To disable client SSL capabilities "
|
|
"use --ssl=OFF.",
|
|
&opt_use_ssl,
|
|
&opt_use_ssl,
|
|
0,
|
|
GET_BOOL,
|
|
OPT_ARG,
|
|
1,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
#endif
|
|
{"ssl-ca",
|
|
OPT_SSL_CA,
|
|
"CA file in PEM format.",
|
|
&opt_ssl_ca,
|
|
&opt_ssl_ca,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-capath",
|
|
OPT_SSL_CAPATH,
|
|
"CA directory.",
|
|
&opt_ssl_capath,
|
|
&opt_ssl_capath,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-cert",
|
|
OPT_SSL_CERT,
|
|
"X509 cert in PEM format.",
|
|
&opt_ssl_cert,
|
|
&opt_ssl_cert,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-cipher",
|
|
OPT_SSL_CIPHER,
|
|
"SSL cipher to use.",
|
|
&opt_ssl_cipher,
|
|
&opt_ssl_cipher,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-key",
|
|
OPT_SSL_KEY,
|
|
"X509 key in PEM format.",
|
|
&opt_ssl_key,
|
|
&opt_ssl_key,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-crl",
|
|
OPT_SSL_CRL,
|
|
"Certificate revocation list.",
|
|
&opt_ssl_crl,
|
|
&opt_ssl_crl,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-crlpath",
|
|
OPT_SSL_CRLPATH,
|
|
"Certificate revocation list path.",
|
|
&opt_ssl_crlpath,
|
|
&opt_ssl_crlpath,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"tls-version",
|
|
OPT_TLS_VERSION,
|
|
"TLS version to use, "
|
|
"permitted values are: TLSv1, TLSv1.1, TLSv1.2, TLSv1.3",
|
|
&opt_tls_version,
|
|
&opt_tls_version,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"ssl-fips-mode",
|
|
OPT_SSL_FIPS_MODE,
|
|
"SSL FIPS mode (applies only for OpenSSL); "
|
|
"permitted values are: OFF, ON, STRICT",
|
|
0,
|
|
0,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
{"tls-ciphersuites",
|
|
OPT_TLS_CIPHERSUITES,
|
|
"TLS v1.3 cipher to use.",
|
|
&opt_tls_ciphersuites,
|
|
&opt_tls_ciphersuites,
|
|
0,
|
|
GET_STR,
|
|
REQUIRED_ARG,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0},
|
|
#endif /* HAVE_OPENSSL */
|
|
|