blob: 5856fbd5484cd7a584a7c896715d10986084e0ff (
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
45
46
47
48
49
50
51
52
53
54
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of the Network Access API. This header file may change from
// version to version without notice, or even be removed.
//
// We mean it.
//
#ifndef QOAUTH2AUTHORIZATIONCODEFLOW_P_H
#define QOAUTH2AUTHORIZATIONCODEFLOW_P_H
#include <private/qabstractoauth2_p.h>
#include <QtNetworkAuth/qoauthglobal.h>
#include <QtNetworkAuth/qoauth2authorizationcodeflow.h>
#include <QtCore/qpointer.h>
#include <QtCore/qstring.h>
#include <QtCore/qdatetime.h>
QT_BEGIN_NAMESPACE
class QOAuth2AuthorizationCodeFlowPrivate : public QAbstractOAuth2Private
{
public:
Q_DECLARE_PUBLIC(QOAuth2AuthorizationCodeFlow)
QOAuth2AuthorizationCodeFlowPrivate(const QUrl &authorizationUrl,
const QUrl &accessTokenUrl,
const QString &clientIdentifier,
QNetworkAccessManager *manager = nullptr);
void _q_handleCallback(const QVariantMap &data);
void _q_authenticate(QNetworkReply *reply, QAuthenticator *authenticator);
QByteArray createPKCEChallenge();
QOAuth2AuthorizationCodeFlow::PkceMethod pkceMethod
= QOAuth2AuthorizationCodeFlow::PkceMethod::S256;
quint8 pkceVerifierLength = 43; // RFC 7636 Section 4.1
QByteArray pkceCodeVerifier;
QPointer<QNetworkReply> currentReply;
};
QT_END_NAMESPACE
#endif // QOAUTH2AUTHORIZATIONCODEFLOW_P_H
|