summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebengineclientcertificateselection.h
blob: 559d1753bc954ffd9d7a178e5173290e039d9e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2018 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 QWEBENGINECLIENTCERTSELECTION_H
#define QWEBENGINECLIENTCERTSELECTION_H

#include <QtWebEngineCore/qtwebenginecoreglobal.h>
#include <QtNetwork/qtnetwork-config.h>
#include <QtCore/qlist.h>
#include <QtCore/qscopedpointer.h>
#include <QtNetwork/qsslcertificate.h>

namespace QtWebEngineCore {
class ClientCertSelectController;
}

QT_BEGIN_NAMESPACE

class Q_WEBENGINECORE_EXPORT QWebEngineClientCertificateSelection
{
public:
    QWebEngineClientCertificateSelection(const QWebEngineClientCertificateSelection &);
    ~QWebEngineClientCertificateSelection();

    QWebEngineClientCertificateSelection &operator=(const QWebEngineClientCertificateSelection &);

    QUrl host() const;

    void select(const QSslCertificate &certificate);
    void selectNone();
    QList<QSslCertificate> certificates() const;

private:
    friend class QWebEnginePagePrivate;

    QWebEngineClientCertificateSelection(
            QSharedPointer<QtWebEngineCore::ClientCertSelectController>);

    QSharedPointer<QtWebEngineCore::ClientCertSelectController> d_ptr;
};

QT_END_NAMESPACE

#endif // QWEBENGINECLIENTCERTSELECTION_H