TLS initialization failed
-
@Raii OpenSSL is distributed as a libraries (dll files under windows). Your program makes use of them by calling exposed functions of those. They must be visible for the program at runtime - the easiest way to do so is to copy them into your .exe folder.
Also, if I am not mistaken, you should link them in your .pro file, so in there should be something along:``
(cut)
Of course paths should be adjusted to your case.
Edit: removed wrong advice. -
@artwaw no, don't link them. The pre-built Qt packages load OpenSSL dynamically. They are not build against it for international restriction about distribution of application making use of cryptography.