diff options
author | Ladislav Zezula <ladislav.zezula@avast.com> | 2021-05-17 12:57:54 +0200 |
---|---|---|
committer | Ladislav Zezula <ladislav.zezula@avast.com> | 2021-05-17 12:57:54 +0200 |
commit | 33bdae86c2345db9514addbf9d5a698eada56fb2 (patch) | |
tree | ff40d644d75b5976b051bf6534e459805e9d184c /test | |
parent | a3332c7c9bc36f13aace6543ebc719f833882dfc (diff) |
Added alignment-aware block encryption/decryption
Diffstat (limited to 'test')
-rw-r--r-- | test/StormTest.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index 20d606e..ab003e4 100644 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -4285,23 +4285,16 @@ int _tmain(int argc, TCHAR * argv[]) //
// Tests on a local listfile
//
- /*
+
if(dwErrCode == ERROR_SUCCESS)
{
TestOnLocalListFile(_T("FLAT-MAP:ListFile_Blizzard.txt"));
dwErrCode = TestOnLocalListFile(_T("ListFile_Blizzard.txt"));
}
- */
+
//
// Open all files from the command line
//
- /*
- SFILE_MARKERS Markers = { sizeof(SFILE_MARKERS) };
- Markers.dwSignature = 'XHSC';
- Markers.szHashTableKey = "(cash table)";
- Markers.szBlockTableKey = "(clock table)";
- SFileSetArchiveMarkers(&Markers);
- */
for(int i = 1; i < argc; i++)
{
|