Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-08-04 17:52:04 +0300
committerHannah von Reth <vonreth@kde.org>2021-08-05 18:14:39 +0300
commitbb2d7b98a452f1e660986d04367d49ec4aa240e9 (patch)
tree65c0c26ed5e54385bbc1bc8b7340714e6f4cdadd /src/gui/creds
parent2d0d866d35e35e1350154381eb5b50148595bd8f (diff)
Remove support for client side certificates
Diffstat (limited to 'src/gui/creds')
-rw-r--r--src/gui/creds/httpcredentialsgui.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/creds/httpcredentialsgui.h b/src/gui/creds/httpcredentialsgui.h
index e34dd0c23..18231f165 100644
--- a/src/gui/creds/httpcredentialsgui.h
+++ b/src/gui/creds/httpcredentialsgui.h
@@ -33,15 +33,13 @@ public:
: HttpCredentials()
{
}
- HttpCredentialsGui(const QString &user, const QString &password,
- const QByteArray &clientCertBundle, const QByteArray &clientCertPassword)
- : HttpCredentials(DetermineAuthTypeJob::AuthType::Basic, user, password, clientCertBundle, clientCertPassword)
+ HttpCredentialsGui(const QString &user, const QString &password)
+ : HttpCredentials(DetermineAuthTypeJob::AuthType::Basic, user, password)
{
}
- HttpCredentialsGui(const QString &user, const QString &password, const QString &refreshToken,
- const QByteArray &clientCertBundle, const QByteArray &clientCertPassword)
- : HttpCredentials(DetermineAuthTypeJob::AuthType::OAuth, user, password, clientCertBundle, clientCertPassword)
+ HttpCredentialsGui(const QString &user, const QString &password, const QString &refreshToken)
+ : HttpCredentials(DetermineAuthTypeJob::AuthType::OAuth, user, password)
{
_refreshToken = refreshToken;
}