6a28f67677
This patch introduces a private 'API' to enable server-side OCSP responses and implements a simple OCSP responder, tests OCSP status on a client side (the test is pretty basic, but for now should suffice). Change-Id: I4c6cacd4a1b949dd0ef5e6b59322fb0967d02120 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
39 lines
777 B
Prolog
39 lines
777 B
Prolog
TEMPLATE=subdirs
|
|
QT_FOR_CONFIG += network-private
|
|
|
|
SUBDIRS=\
|
|
qpassworddigestor \
|
|
qsslcertificate \
|
|
qsslcipher \
|
|
qsslellipticcurve \
|
|
qsslerror \
|
|
qsslkey \
|
|
|
|
qtConfig(ssl) {
|
|
qtConfig(private_tests) {
|
|
SUBDIRS += \
|
|
qsslsocket \
|
|
qsslsocket_onDemandCertificates_member \
|
|
qsslsocket_onDemandCertificates_static
|
|
|
|
qtConfig(dtls) {
|
|
SUBDIRS += \
|
|
qdtlscookie \
|
|
qdtls
|
|
}
|
|
|
|
qtConfig(ocsp): SUBDIRS += qocsp
|
|
}
|
|
}
|
|
|
|
winrt: SUBDIRS -= \
|
|
qsslsocket_onDemandCertificates_member \
|
|
qsslsocket_onDemandCertificates_static \
|
|
|
|
qtConfig(ssl) {
|
|
qtConfig(private_tests) {
|
|
SUBDIRS += qasn1element \
|
|
qssldiffiehellmanparameters
|
|
}
|
|
}
|