mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-13 15:46:01 +03:00
[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:
parent
7e2085375f
commit
3f4d915a17
3 changed files with 15 additions and 0 deletions
|
@ -57,6 +57,7 @@ set(libsync_SRCS
|
|||
syncresult.cpp
|
||||
theme.cpp
|
||||
excludedfiles.cpp
|
||||
clientsideencryption.cpp
|
||||
creds/dummycredentials.cpp
|
||||
creds/abstractcredentials.cpp
|
||||
creds/credentialscommon.cpp
|
||||
|
|
4
src/libsync/clientsideencryption.cpp
Normal file
4
src/libsync/clientsideencryption.cpp
Normal file
|
@ -0,0 +1,4 @@
|
|||
#include "clientsideencryption.h"
|
||||
|
||||
namespace ClientSideEncryption {
|
||||
}
|
10
src/libsync/clientsideencryption.h
Normal file
10
src/libsync/clientsideencryption.h
Normal 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
|
Loading…
Reference in a new issue