mirror of
https://github.com/MariaDB/server.git
synced 2025-08-18 00:11:34 +02:00

emulate OpenSSL behavior in WolfSSL: * use IANA cipher names (TLS_ prefix, underscore) for TLSv1.3 e.g. TLS_AES_256_GCM_SHA384 * use OpenSSL names (no previx, dash) otherwise e.g. AES256-GCM-SHA384
11 lines
314 B
Text
11 lines
314 B
Text
--source include/have_ssl_communication.inc
|
|
--source include/have_tlsv13.inc
|
|
--echo #
|
|
--echo # MDEV-35580 Server using WolfSSL shows different name than OpenSSL for some ciphers
|
|
--echo #
|
|
connect c,localhost,root,,,,,SSL;
|
|
|
|
show status like 'ssl_cipher';
|
|
show status like 'ssl_version';
|
|
|
|
--echo # End of 10.11 tests
|