mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
45 lines
1.7 KiB
C++
45 lines
1.7 KiB
C++
#pragma once
|
|
/*
|
|
* Copyright (C) 2023 by Oleksandr Zolotov <alex@nextcloud.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
#include <QByteArray>
|
|
#include <QSet>
|
|
#include <QString>
|
|
#include <csync.h>
|
|
#include <owncloudlib.h>
|
|
|
|
namespace OCC
|
|
{
|
|
// required parts from root E2EE folder's metadata for version 2.0+
|
|
struct OWNCLOUDSYNC_EXPORT RootEncryptedFolderInfo {
|
|
RootEncryptedFolderInfo();
|
|
explicit RootEncryptedFolderInfo(const QString &remotePath,
|
|
const QByteArray &encryptionKey = {},
|
|
const QByteArray &decryptionKey = {},
|
|
const QSet<QByteArray> &checksums = {},
|
|
const quint64 counter = 0);
|
|
|
|
static RootEncryptedFolderInfo makeDefault();
|
|
|
|
static QString createRootPath(const QString ¤tPath, const QString &topLevelPath);
|
|
|
|
QString path;
|
|
QByteArray keyForEncryption; // it can be different from keyForDecryption when new metadatKey is generated in root E2EE foler
|
|
QByteArray keyForDecryption; // always storing previous metadataKey to be able to decrypt nested E2EE folders' previous metadata
|
|
QSet<QByteArray> keyChecksums;
|
|
quint64 counter = 0;
|
|
[[nodiscard]] bool keysSet() const;
|
|
};
|
|
|
|
} // namespace OCC
|