Commit e109a662 authored by Sergei Golubchik's avatar Sergei Golubchik

mtr check for openssl support for AES_CTR

parent f3da18f6
#
# See suite.pm for the actual check
#
--encryption-algorithm=aes_ctr
...@@ -66,6 +66,10 @@ sub skip_combinations { ...@@ -66,6 +66,10 @@ sub skip_combinations {
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/ unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
and $1 ge "1.0.1"; and $1 ge "1.0.1";
$skip{'include/have_openssl_ctr.inc'} = 'no or too old openssl'
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
and $1 ge "1.0.1";
%skip; %skip;
} }
......
--aria-encrypt-tables=ON --aria-encrypt-tables=ON
--encryption-algorithm=aes_ctr
--encrypt-tmp-disk-tables=ON --encrypt-tmp-disk-tables=ON
--innodb-encrypt-tables=ON --innodb-encrypt-tables=ON
--innodb-encryption-rotate-key-age=15 --innodb-encryption-rotate-key-age=15
......
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_openssl_ctr.inc
-- source include/have_example_key_management_plugin.inc -- source include/have_example_key_management_plugin.inc
# embedded does not support restart # embedded does not support restart
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# #
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_example_key_management_plugin.inc -- source include/have_example_key_management_plugin.inc
-- source include/have_openssl_ctr.inc
# embedded does not support restart # embedded does not support restart
-- source include/not_embedded.inc -- source include/not_embedded.inc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment