使用Qt的https(get,post,put等)請求時報
qt.network.ssl: QSslSocket::connectToHostEncrypted: TLS initialization failed
錯誤。
開發環境
- Windows10 64位
- Qt 5.12.1
- MSVC 2017編譯器(版本:15.0)
發現問題
- 在帶開發環境的電腦上運行沒問題,而移植到其餘系統則有問題,報SSL錯誤,致使https請求不工做。
qt.network.ssl: QSslSocket::connectToHostEncrypted: TLS initialization failed.
問題分析
- 根據打印的錯誤提示找到對應源碼。
void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port,
const QString &sslPeerName, OpenMode mode,
NetworkLayerProtocol protocol)
{
...
if (!supportsSsl()) {
qCWarning(lcSsl, "QSslSocket::connectToHostEncrypted: TLS initialization failed");
d->setErrorAndEmit(QAbstractSocket::SslInternalError, tr("TLS initialization failed"));
return;
}
d->init();
...
}
- 若是
supportsSsl
函數返回false時打印錯誤(警告)信息,就再也不執行後續操做了,因而繼續查看supportsSsl
函數。
/* 若是此平臺支持SSL,則返回true;不然,返回false。
* 若是平臺不支持SSL,套接字將失敗在鏈接階段。
*/
bool QSslSocket::supportsSsl()
{
return QSslSocketPrivate::supportsSsl();
}
bool QSslSocketPrivate::supportsSsl()
{
return ensureLibraryLoaded();
}
-
ensureLibraryLoaded
實現。
bool QSslSocketPrivate::ensureLibraryLoaded()
{
if (!q_resolveOpenSslSymbols())
return false;
...
return true;
}
- 因爲Qt君使用的是windows系統因此選用
loadOpenSslWin32
加載SSL庫函數。
bool q_resolveOpenSslSymbols()
{
...
#ifdef Q_OS_WIN
QPair<QSystemLibrary *, QSystemLibrary *> libs = loadOpenSslWin32();
#else
QPair<QLibrary *, QLibrary *> libs = loadOpenSsl();
#endif
if (!libs.first || !libs.second)
// failed to load them
return false;
...
-
loadOpenSslWin32
實現。
static QPair<QSystemLibrary*, QSystemLibrary*> loadOpenSslWin32()
{
...
#if QT_CONFIG(opensslv11)
// With OpenSSL 1.1 the names have changed to libssl-1_1(-x64) and libcrypto-1_1(-x64), for builds using
// MSVC and GCC, (-x64 suffix for 64-bit builds).
#ifdef Q_PROCESSOR_X86_64
#define QT_SSL_SUFFIX "-x64"
#else // !Q_PROCESSOFR_X86_64
#define QT_SSL_SUFFIX
#endif // !Q_PROCESSOR_x86_64
tryToLoadOpenSslWin32Library(QLatin1String("libssl-1_1" QT_SSL_SUFFIX),
QLatin1String("libcrypto-1_1" QT_SSL_SUFFIX), pair);
#undef QT_SSL_SUFFIX
#else // QT_CONFIG(opensslv11)
// When OpenSSL is built using MSVC then the libraries are named 'ssleay32.dll' and 'libeay32'dll'.
// When OpenSSL is built using GCC then different library names are used (depending on the OpenSSL version)
// The oldest version of a GCC-based OpenSSL which can be detected by the code below is 0.9.8g (released in 2007)
if (!tryToLoadOpenSslWin32Library(QLatin1String("ssleay32"), QLatin1String("libeay32"), pair)) {
if (!tryToLoadOpenSslWin32Library(QLatin1String("libssl-10"), QLatin1String("libcrypto-10"), pair)) {
if (!tryToLoadOpenSslWin32Library(QLatin1String("libssl-8"), QLatin1String("libcrypto-8"), pair)) {
tryToLoadOpenSslWin32Library(QLatin1String("libssl-7"), QLatin1String("libcrypto-7"), pair);
}
}
}
#endif // !QT_CONFIG(opensslv11)
return pair;
}
- Qt版本沒有配置
opensslv11
,因此加載如下的SSL庫操做。依次查找ssleay32
和libeay32
,若是沒有找到就查找libssl-10
和libcrypto-10
依此類推直到libssl-7
和libcrypto-7
。
if (!tryToLoadOpenSslWin32Library(QLatin1String("ssleay32"), QLatin1String("libeay32"), pair)) {
if (!tryToLoadOpenSslWin32Library(QLatin1String("libssl-10"), QLatin1String("libcrypto-10"), pair)) {
if (!tryToLoadOpenSslWin32Library(QLatin1String("libssl-8"), QLatin1String("libcrypto-8"), pair)) {
tryToLoadOpenSslWin32Library(QLatin1String("libssl-7"), QLatin1String("libcrypto-7"), pair);
}
}
}
問題解決
- 找對應平臺版本的SSL庫,Qt君將
ssleay32
和libeay32
庫放到運行目錄下即解決了問題。
- 因爲開發環境存在
ssleay32
和libeay32
路徑連接,而打包程序又沒有複製SSL庫,致使移植到其餘電腦的SSL功能不正常的問題。
一些總結
- 能夠將SSL庫與應用程序一塊兒部署,也能夠在計算機上安裝OpenSSL。
- 根據不一樣的Qt版本SSL庫可能有所不一樣。
- Dependency Walker工具也找不到依賴的庫,由於它是運行時加載的庫。注:Dependency Walker能夠掃描任何32位或64位Windows模塊exe,dll,ocx,sys等,並構建全部對象的層次結構樹圖。
- SSL庫Windows版本下載地址:
https://slproweb.com/products/Win32OpenSSL.html
https://github.com/openssl/openssl
- 若是是mingw版本的SSL庫,可在下列路徑找到(是你實際的路徑):
C:\Qt\Qt5.12.1\Tools\mingw730_64\opt\bin