Qt 6.11 is out! See what's new in the release
blog
QSslConfiguration - supportedCiphers returns 0 items
-
Hi all,
Why supportedCiphers() returns 0 items? Operating system is Windows 10, compiler VS2013.QSslConfiguration sslConfig = QSslConfiguration::defaultConfiguration(); qDebug() << sslConfig.supportedCiphers().count();[Edit aha_1980: fixed typo in title]
-
Hi,
Do you have OpenSSL installed on your Windows machine ?
If so:
- What version is it ?
- Did you modify your Project Run
PATHenvironment variable so that they can be found at run time ?
-
Yes, you need to.
The latest version of the 1.0 series would be best as the 1.1 version broke API and ABI compatibility. Since Qt 5.10, the new API is supported although you need to build Qt yourself to use it currently. Also since you are using MSVC2013, you are not using a very recent version of Qt. Therefore, OpenSSL 1.0 is the only choice.
-
Hi,
Do you have OpenSSL installed on your Windows machine ?
If so:
- What version is it ?
- Did you modify your Project Run
PATHenvironment variable so that they can be found at run time ?
-
Hi @SGaist ,
I installed OpenSSL but nothing changed. Also i change compiler to MinGW and tried again but result is same. What did i miss.Thanks,
-