mariadb/mysql-test/main/ssl_cipher_tlsv13.test
Sergei Golubchik 0d20ed9eae MDEV-35580 Server using WolfSSL shows different name than OpenSSL for some ciphers
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
2025-07-17 09:18:17 +02:00

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