From 75bb0fa2dfe0baea8bafce8066b17a57fb475aa7 Mon Sep 17 00:00:00 2001 From: Hideki Miyazaki Date: Wed, 18 Mar 2026 10:42:34 +0900 Subject: [PATCH] revert pr9831 changes Qt assumes OpenSSL cipher names rather than IANA names --- src/ssl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 9772b85e4ef..6987f7b26e4 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -10470,7 +10470,8 @@ const char* wolfSSL_CIPHER_get_name(const WOLFSSL_CIPHER* cipher) return NULL; } - #if !defined(WOLFSSL_CIPHER_INTERNALNAME) && !defined(NO_ERROR_STRINGS) + #if !defined(WOLFSSL_CIPHER_INTERNALNAME) && !defined(NO_ERROR_STRINGS) && \ + !defined(WOLFSSL_QT) return GetCipherNameIana(cipher->cipherSuite0, cipher->cipherSuite); #else return wolfSSL_get_cipher_name_from_suite(cipher->cipherSuite0,