Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallexzander <blackslayer4@gmail.com>2021-07-14 15:36:25 +0300
committerallexzander (Rebase PR Action) <allexzander@users.noreply.github.com>2021-08-20 15:57:22 +0300
commitba73b6d914221458c0e6586c6e6bac3f18c70aed (patch)
treefba108408abc4c1d12be5df49b28827255b4476b /src/common
parent289df252b56d1db7573692c57ba6d50b1af52e7b (diff)
VFS + E2EE. Improved data alignment and unit tests for StreamingDecryptor. Refactoring and renaming for readability.
Signed-off-by: allexzander <blackslayer4@gmail.com>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/constants.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/constants.h b/src/common/constants.h
index d6975b737..894a3778f 100644
--- a/src/common/constants.h
+++ b/src/common/constants.h
@@ -14,8 +14,10 @@
#pragma once
+#include <QtGlobal>
+
namespace OCC {
-namespace CommonConstants {
- const qint64 e2EeTagSize = 16;
+namespace Constants {
+ constexpr qint32 e2EeTagSize = 16;
};
};