Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error Creating SSL Context - Qt

Tags:

c++

openssl

qt

I tried everything mentioned in this Question

but nothing worked. The binary works fine on Windows 64-bit, but almost always shows the error

Error Creating SSL Context()

on Windows 32-bit. I tried the demo http client example.

like image 767
adnan kamili Avatar asked Sep 19 '13 12:09

adnan kamili


1 Answers

At last, I found the solution. I was downloading dll's from a dll website. You need to take these libraries

- libeay32.dll
- libssl32.dll
- ssleay32.dll

from this website here Win32 OpenSSL v1.0.2 file for 32 bit if you are using MSVC++ compiler

After installation of the above binary, copy the above three dll's in the the directory containing your binary file.

like image 52
adnan kamili Avatar answered Sep 20 '22 01:09

adnan kamili