SSL works without libraries?
-
I'm creating an application that downloads some files with a secure connection.
QSslSocket::supportsSsl() returns true but I still get errors:
@QSslSocket: cannot resolve TLSv1_1_client_method
QSslSocket: cannot resolve TLSv1_2_client_method
QSslSocket: cannot resolve TLSv1_1_server_method
QSslSocket: cannot resolve TLSv1_2_server_method
QSslSocket: cannot resolve SSL_select_next_proto
QSslSocket: cannot resolve SSL_CTX_set_next_proto_select_cb
QSslSocket: cannot resolve SSL_get0_next_proto_negotiated
QSslSocket: cannot call unresolved function SSL_get0_next_proto_negotiated@
I haven't installed any ssl libs but the downloaded file is ok. Does that mean that windows already has those dlls?But why do I get errors if everything works fine?
I am using Qt 5.3 with MSVC2013 32bit on win 8.1 64bit
Thanks for help!