mariadb/mysql-test/main/ssl_cipher_tlsv13.result
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
301 B
Text

#
# MDEV-35580 Server using WolfSSL shows different name than OpenSSL for some ciphers
#
connect c,localhost,root,,,,,SSL;
show status like 'ssl_cipher';
Variable_name Value
Ssl_cipher TLS_AES_256_GCM_SHA384
show status like 'ssl_version';
Variable_name Value
Ssl_version TLSv1.3
# End of 10.11 tests