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/ZipCompressionMode.h')
-rwxr-xr-x7zip/Archive/Zip/ZipCompressionMode.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/7zip/Archive/Zip/ZipCompressionMode.h b/7zip/Archive/Zip/ZipCompressionMode.h
index 83b8fe44..f1c79918 100755
--- a/7zip/Archive/Zip/ZipCompressionMode.h
+++ b/7zip/Archive/Zip/ZipCompressionMode.h
@@ -23,7 +23,15 @@ struct CCompressionMethodMode
#endif
bool PasswordIsDefined;
AString Password;
- CCompressionMethodMode(): NumMatchFinderCyclesDefined(false) {}
+ bool IsAesMode;
+ Byte AesKeyMode;
+
+ CCompressionMethodMode():
+ NumMatchFinderCyclesDefined(false),
+ PasswordIsDefined(false),
+ IsAesMode(false),
+ AesKeyMode(3)
+ {}
};
}}