[cse] Add files to handle client side encryption

This will be the responsible for encryption,
decryption and talking with the server.
This commit is contained in:
Tomaz Canabrava 2017-09-11 15:00:01 +02:00 committed by Roeland Jago Douma
parent 7e2085375f
commit 3f4d915a17
No known key found for this signature in database
GPG key ID: F941078878347C0C
3 changed files with 15 additions and 0 deletions

View file

@ -57,6 +57,7 @@ set(libsync_SRCS
syncresult.cpp
theme.cpp
excludedfiles.cpp
clientsideencryption.cpp
creds/dummycredentials.cpp
creds/abstractcredentials.cpp
creds/credentialscommon.cpp

View file

@ -0,0 +1,4 @@
#include "clientsideencryption.h"
namespace ClientSideEncryption {
}

View file

@ -0,0 +1,10 @@
#ifndef CLIENTSIDEENCRYPTION_H
#define CLIENTSIDEENCRYPTION_H
#include <QString>
namespace ClientSideEncryption {
QString baseUrl = QStringLiteral("ocs/v2.php/apps/client_side_encryption/api/v1/");
}
#endif