2009-09-23 23:32:31 +02:00
|
|
|
#ifndef SSLOPT_LONGOPTS_INCLUDED
|
|
|
|
#define SSLOPT_LONGOPTS_INCLUDED
|
|
|
|
|
2011-06-30 17:46:53 +02:00
|
|
|
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License 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
|
2011-06-30 17:46:53 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
Backport of:
ChangeSet@1.2703, 2007-12-07 09:35:28-05:00, cmiller@zippy.cornsilk.net +40 -0
Bug#13174: SHA2 function
Patch contributed from Bill Karwin, paper unnumbered CLA in Seattle
Implement SHA2 functions.
Chad added code to make it work with YaSSL. Also, he removed the
(probable) bug of embedded server never using SSL-dependent
functions. (libmysqld/Makefile.am didn't read ANY autoconf defs.)
Function specification:
SHA2( string cleartext, integer hash_length )
-> string hash, or NULL
where hash_length is one of 224, 256, 384, or 512. If either is
NULL or a length is unsupported, then the result is NULL. The
resulting string is always the length of the hash_length parameter
or is NULL.
Include the canonical hash examples from the NIST in the test
results.
---
Polish and address concerns of reviewers.
2010-04-13 17:04:45 +02:00
|
|
|
#if defined(HAVE_OPENSSL) && !defined(EMBEDDED_LIBRARY)
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2002-04-02 19:29:53 +02:00
|
|
|
{"ssl", OPT_SSL_SSL,
|
2009-12-22 10:35:56 +01:00
|
|
|
"Enable SSL for connection (automatically enabled with other flags).",
|
2010-06-11 03:30:49 +02:00
|
|
|
&opt_use_ssl, &opt_use_ssl, 0, GET_BOOL, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
2002-04-02 19:29:53 +02:00
|
|
|
{"ssl-ca", OPT_SSL_CA,
|
2003-06-13 10:59:02 +02:00
|
|
|
"CA file in PEM format (check OpenSSL docs, implies --ssl).",
|
2010-06-10 22:16:43 +02:00
|
|
|
&opt_ssl_ca, &opt_ssl_ca, 0, GET_STR, REQUIRED_ARG,
|
2002-04-02 19:29:53 +02:00
|
|
|
0, 0, 0, 0, 0, 0},
|
|
|
|
{"ssl-capath", OPT_SSL_CAPATH,
|
2003-06-13 10:59:02 +02:00
|
|
|
"CA directory (check OpenSSL docs, implies --ssl).",
|
2010-06-10 22:16:43 +02:00
|
|
|
&opt_ssl_capath, &opt_ssl_capath, 0, GET_STR, REQUIRED_ARG,
|
2002-04-02 19:29:53 +02:00
|
|
|
0, 0, 0, 0, 0, 0},
|
Bug #1039: tmpdir and datadir not available via @@ system variable syntax
Bug #19606: ssl variables are not displayed in show variables
Bug #19616: log_queries_not_using_indexes is not listed in show variables
Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca,
ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from
SHOW VARIABLES and as @@variables.
As a side-effect of this change, log_queries_not_using_indexes can
be changed at runtime (but only globally, not per-connection).
2006-05-09 01:38:45 +02:00
|
|
|
{"ssl-cert", OPT_SSL_CERT, "X509 cert in PEM format (implies --ssl).",
|
2010-06-10 22:16:43 +02:00
|
|
|
&opt_ssl_cert, &opt_ssl_cert, 0, GET_STR, REQUIRED_ARG,
|
Bug #1039: tmpdir and datadir not available via @@ system variable syntax
Bug #19606: ssl variables are not displayed in show variables
Bug #19616: log_queries_not_using_indexes is not listed in show variables
Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca,
ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from
SHOW VARIABLES and as @@variables.
As a side-effect of this change, log_queries_not_using_indexes can
be changed at runtime (but only globally, not per-connection).
2006-05-09 01:38:45 +02:00
|
|
|
0, 0, 0, 0, 0, 0},
|
2003-06-13 10:59:02 +02:00
|
|
|
{"ssl-cipher", OPT_SSL_CIPHER, "SSL cipher to use (implies --ssl).",
|
2010-06-10 22:16:43 +02:00
|
|
|
&opt_ssl_cipher, &opt_ssl_cipher, 0, GET_STR, REQUIRED_ARG,
|
2002-04-02 19:29:53 +02:00
|
|
|
0, 0, 0, 0, 0, 0},
|
Bug #1039: tmpdir and datadir not available via @@ system variable syntax
Bug #19606: ssl variables are not displayed in show variables
Bug #19616: log_queries_not_using_indexes is not listed in show variables
Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca,
ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from
SHOW VARIABLES and as @@variables.
As a side-effect of this change, log_queries_not_using_indexes can
be changed at runtime (but only globally, not per-connection).
2006-05-09 01:38:45 +02:00
|
|
|
{"ssl-key", OPT_SSL_KEY, "X509 key in PEM format (implies --ssl).",
|
2010-06-10 22:16:43 +02:00
|
|
|
&opt_ssl_key, &opt_ssl_key, 0, GET_STR, REQUIRED_ARG,
|
Bug #1039: tmpdir and datadir not available via @@ system variable syntax
Bug #19606: ssl variables are not displayed in show variables
Bug #19616: log_queries_not_using_indexes is not listed in show variables
Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca,
ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from
SHOW VARIABLES and as @@variables.
As a side-effect of this change, log_queries_not_using_indexes can
be changed at runtime (but only globally, not per-connection).
2006-05-09 01:38:45 +02:00
|
|
|
0, 0, 0, 0, 0, 0},
|
2006-04-18 17:58:27 +02:00
|
|
|
#ifdef MYSQL_CLIENT
|
|
|
|
{"ssl-verify-server-cert", OPT_SSL_VERIFY_SERVER_CERT,
|
2010-06-10 22:16:43 +02:00
|
|
|
"Verify server's \"Common Name\" in its cert against hostname used "
|
|
|
|
"when connecting. This option is disabled by default.",
|
|
|
|
&opt_ssl_verify_server_cert, &opt_ssl_verify_server_cert,
|
2010-06-11 03:30:49 +02:00
|
|
|
0, GET_BOOL, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
2006-04-18 17:58:27 +02:00
|
|
|
#endif
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif /* HAVE_OPENSSL */
|
2009-09-23 23:32:31 +02:00
|
|
|
#endif /* SSLOPT_LONGOPTS_INCLUDED */
|