// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QTLSBACKEND_CERT_P_H #define QTLSBACKEND_CERT_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE class QTlsBackendCertOnly final : public QTlsBackend { Q_OBJECT Q_PLUGIN_METADATA(IID QTlsBackend_iid) Q_INTERFACES(QTlsBackend) private: QString backendName() const override; QList supportedProtocols() const override; QList supportedFeatures() const override; QList implementedClasses() const override; QTlsPrivate::X509Certificate *createCertificate() const override; QTlsPrivate::X509PemReaderPtr X509PemReader() const override; QTlsPrivate::X509DerReaderPtr X509DerReader() const override; }; QT_END_NAMESPACE #endif // QTLSBACKEND_CERT_P_H