0

In my Qt Application, I try to access to a ssh page. On few computer I've this error :

Error Creating SSL context()

I try all the solutions I founded :

  • Install Microsoft Visual C++ 2008 SP1 Redistributable Package
  • Add the dlls libeay32.dll/ssleay32.dll/libssl32.dll in the path of my exe
  • Add this in my .pro :

    CONFIG += openssl-linked

Nothing... I do my test with a Microsoft 7 64bits computer

Do you have an idea ? Thank you very much

4

1 回答 1

1

我找到了解决方案,您必须添加三个 dll :

  • libssl32.dll
  • ibeay32.dll
  • ssleay32.dll

但是从 Qt 目录(例如 C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin)而不是 System32 中获取这些库...

于 2013-07-16T16:32:59.573 回答