2019-07-24 11:03:33 +00:00
|
|
|
# Generated from ssl.pro.
|
|
|
|
|
|
|
|
add_subdirectory(qpassworddigestor)
|
|
|
|
add_subdirectory(qsslcertificate)
|
|
|
|
add_subdirectory(qsslcipher)
|
|
|
|
add_subdirectory(qsslellipticcurve)
|
2020-10-21 10:40:22 +00:00
|
|
|
if(QT_FEATURE_ssl)
|
|
|
|
add_subdirectory(qsslkey)
|
2020-11-24 11:43:41 +00:00
|
|
|
add_subdirectory(qsslerror)
|
2020-10-21 10:40:22 +00:00
|
|
|
endif()
|
2020-06-05 07:24:37 +00:00
|
|
|
if(QT_FEATURE_private_tests AND QT_FEATURE_ssl)
|
|
|
|
add_subdirectory(qsslsocket)
|
|
|
|
add_subdirectory(qsslsocket_onDemandCertificates_member)
|
|
|
|
add_subdirectory(qsslsocket_onDemandCertificates_static)
|
Move plugin code from QtNetwork to qtbase/plugins
All TLS (and non-TLS) backends that QSsl classes rely
on are now in plugins/tls (as openssl, securetransport,
schannel and certonly plugins).
For now, I have to disable some tests that were using OpenSSL
calls - this to be refactored/re-thought. These include:
qsslsocket auto-test (test-case where we work with private keys),
qsslkey auto-test (similar to qsslsocket - test-case working with
keys using OpenSSL calls).
qasn1element moved to plugins too, so its auto-test have to
be re-thought.
Since now we can have more than one working TLS-backend on a given
platform, the presence of OpenSSL also means I force this backend
as active before running tests, to make sure features implemented
only in OpenSSL-backend are tested.
OCSP auto test is disabled for now, since it heavily relies on
OpenSSL symbols (to be refactored).
[ChangeLog][QtNetwork][QSslSocket] QSslSocket by default prefers 'openssl' backend
if it is available.
[ChangeLog][QtNetwork][QSslSocket] TLS-backends are not mutually exclusive anymore,
depending on a platform, more than one TLS backend can be built. E.g., configuring
Qt with -openssl does not prevent SecureTransport or Schannel plugin from being
built.
Fixes: QTBUG-91928
Change-Id: I4c05e32f10179066bee3a518bdfdd6c4b15320c3
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-03-25 11:41:08 +00:00
|
|
|
# add_subdirectory(qasn1element)
|
2020-06-05 07:24:37 +00:00
|
|
|
add_subdirectory(qssldiffiehellmanparameters)
|
2022-05-03 13:58:44 +00:00
|
|
|
add_subdirectory(qsslserver)
|
2019-07-24 11:03:33 +00:00
|
|
|
endif()
|
2020-06-05 07:24:37 +00:00
|
|
|
if(QT_FEATURE_dtls AND QT_FEATURE_private_tests AND QT_FEATURE_ssl)
|
|
|
|
add_subdirectory(qdtlscookie)
|
|
|
|
add_subdirectory(qdtls)
|
|
|
|
endif()
|
|
|
|
if(QT_FEATURE_ocsp AND QT_FEATURE_private_tests AND QT_FEATURE_ssl)
|
|
|
|
add_subdirectory(qocsp)
|
2019-07-24 11:03:33 +00:00
|
|
|
endif()
|