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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Archive/Zip/ZipHandler.h')
-rwxr-xr-x7zip/Archive/Zip/ZipHandler.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/7zip/Archive/Zip/ZipHandler.h b/7zip/Archive/Zip/ZipHandler.h
index 94aae211..ea6becd0 100755
--- a/7zip/Archive/Zip/ZipHandler.h
+++ b/7zip/Archive/Zip/ZipHandler.h
@@ -71,6 +71,9 @@ private:
UInt32 m_NumMatchFinderCycles;
bool m_NumMatchFinderCyclesDefined;
+ bool m_IsAesMode;
+ Byte m_AesKeyMode;
+
#ifdef COMPRESS_MT
UInt32 _numThreads;
#endif
@@ -84,6 +87,8 @@ private:
m_NumFastBytes =
m_NumMatchFinderCycles = 0xFFFFFFFF;
m_NumMatchFinderCyclesDefined = false;
+ m_IsAesMode = false;
+ m_AesKeyMode = 3; // aes-256
#ifdef COMPRESS_MT
_numThreads = NWindows::NSystem::GetNumberOfProcessors();;
#endif