Skip to content

Commit

Permalink
Remove support for client side certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Aug 4, 2021
1 parent 4380f21 commit 573ddd0
Show file tree
Hide file tree
Showing 20 changed files with 13 additions and 698 deletions.
5 changes: 2 additions & 3 deletions src/cmd/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,8 @@ class HttpCredentialsText : public HttpCredentials
{
public:
HttpCredentialsText(const QString &user, const QString &password)
: HttpCredentials(DetermineAuthTypeJob::AuthType::Basic ,user, password)
, // FIXME: not working with client certs yet (qknight)
_sslTrusted(false)
: HttpCredentials(DetermineAuthTypeJob::AuthType::Basic, user, password)
, _sslTrusted(false)
{
}

Expand Down
2 changes: 0 additions & 2 deletions src/gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ set(client_UI_SRCS
shareusergroupwidget.ui
shareuserline.ui
sslerrordialog.ui
addcertificatedialog.ui
proxyauthdialog.ui
notificationwidget.ui
logbrowser.ui
Expand Down Expand Up @@ -75,7 +74,6 @@ set(client_SRCS
thumbnailjob.cpp
quotainfo.cpp
accountstate.cpp
addcertificatedialog.cpp
authenticationdialog.cpp
proxyauthhandler.cpp
proxyauthdialog.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/gui/accountstate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ void AccountState::checkConnectivity(bool blockJobs)
}

// If we never fetched credentials, do that now - otherwise connection attempts
// make little sense, we might be missing client certs.
// make little sense.
if (!account()->credentials()->wasFetched()) {
_waitingForNewCredentials = true;
account()->credentials()->fetchFromKeychain();
Expand Down
63 changes: 0 additions & 63 deletions src/gui/addcertificatedialog.cpp

This file was deleted.

53 changes: 0 additions & 53 deletions src/gui/addcertificatedialog.h

This file was deleted.

244 changes: 0 additions & 244 deletions src/gui/addcertificatedialog.ui

This file was deleted.

Loading

0 comments on commit 573ddd0

Please sign in to comment.