mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
53fecff1ef
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.
8 lines
408 B
PHP
8 lines
408 B
PHP
-- require r/have_ssl_is_yes_or_disabled_only.require
|
|
disable_query_log;
|
|
# "yes" means that the ssl library is found and the server can communicate using SSL.
|
|
# "no" means that there are no SSL functions in the server.
|
|
# "disabled" means that ssl functions exist, but communication is disabled for some reason.
|
|
replace_regex s/(YES|DISABLED)/yesordisabled/;
|
|
show variables like "have_ssl";
|
|
enable_query_log;
|