[CSE] Remove unused function

This is already being called from somwhere else.
This commit is contained in:
Tomaz Canabrava 2017-10-18 20:43:12 +02:00 committed by Roeland Jago Douma
parent e0988f482c
commit 1a47052aa3
No known key found for this signature in database
GPG key ID: F941078878347C0C
2 changed files with 0 additions and 7 deletions

View file

@ -527,10 +527,4 @@ void ClientSideEncryption::getPublicKeyFromServer()
}); });
job->start(); job->start();
} }
void ClientSideEncryption::signPublicKey()
{
}
} }

View file

@ -26,7 +26,6 @@ public:
QString generateCSR(EVP_PKEY *keyPair); QString generateCSR(EVP_PKEY *keyPair);
void getPrivateKeyFromServer(); void getPrivateKeyFromServer();
void getPublicKeyFromServer(); void getPublicKeyFromServer();
void signPublicKey();
void encryptPrivateKey(EVP_PKEY *keyPair); void encryptPrivateKey(EVP_PKEY *keyPair);
QString privateKeyPath() const; QString privateKeyPath() const;
QString publicKeyPath() const; QString publicKeyPath() const;