mirror of
https://github.com/MariaDB/server.git
synced 2025-08-02 00:21:35 +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
301 B
Text
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
|