Https support using QNetworkAccessManager. Enabling SslErrors at Run Time

I am doing https get operation with QNetworkAccessManager. I run SSLErrors at runtime. After some research time, I was able to run my program after installing OpenSSL. I needed two dll libraries: libeay32.dll and ssleay32.dll. Should I say that I cannot perform the https "get" operation using QNetworkAccessManager without OpenSSL? Does Qt support native https support with QNetworkAccessManager.

Thanks, De Costo.

+4
source share
1 answer

I had to install the following DLL found on the following website on my machine: http://www.slproweb.com/products/Win32OpenSSL.html

Encryption is carefully protected by citizenship. So, additional information:

http://developer.qt.nokia.com/faq/answer/how_can_i_add_ssl_support_to_my_qt_application

+2
source

Source: https://habr.com/ru/post/1347666/


All Articles