There is two versions of opelSsl in QT:
First one show runtime used library, second show build library version... Ok, but not clearly.
Thank you for answers.
https://doc.qt.io/qt-5/qsslsocket.html QT 5.13.0 Open ssl notworking mingw 7.3.0
The runtime version of OpenSSL is the version loaded at runtime. The build version of OpenSSL is the version of OpenSSL present during the build.
Qt can be built in three ways:
If you are using the build of Qt provided by the online installer, then OpenSSL is not included, but is searched runtime by the framework. So provide it when the app starts, and provide a version that is compatible with the version of Qt you are using. If the OpenSSL library is found, QSslSocket::sslLibraryVersionString() should print its version. To answer the questions: