mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
98 lines
3.8 KiB
C++
98 lines
3.8 KiB
C++
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2023
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
|
* street, Riga, Latvia, EU, LV-1050.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
// Test.cpp : Defines the entry point for the console application.
|
|
//
|
|
#include "tchar.h"
|
|
#include "../source/ECMACryptFile.h"
|
|
#include "../../Common/OfficeFileFormatChecker.h"
|
|
#include "../../DesktopEditor/common/File.h"
|
|
|
|
#if defined(_WIN64)
|
|
#pragma comment(lib, "../../build/bin/icu/win_64/icuuc.lib")
|
|
#elif defined (_WIN32)
|
|
|
|
#if defined(_DEBUG)
|
|
//#pragma comment(lib, "../../build/lib/win_32/DEBUG/graphics.lib")
|
|
#pragma comment(lib, "../../build/lib/win_32/DEBUG/kernel.lib")
|
|
#pragma comment(lib, "../../build/lib/win_32/DEBUG/UnicodeConverter.lib")
|
|
#else
|
|
//#pragma comment(lib, "../../build/lib/win_32/graphics.lib")
|
|
#pragma comment(lib, "../../build/lib/win_32/kernel.lib")
|
|
#endif
|
|
#pragma comment(lib, "../../build/bin/icu/win_32/icuuc.lib")
|
|
#endif
|
|
|
|
int _tmain(int argc, _TCHAR* argv[])
|
|
{
|
|
#define __CRTDBG_MAP_ALLOC
|
|
#include <crtdbg.h>
|
|
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
|
#define new DEBUG_NEW
|
|
|
|
std::wstring password = L"123";
|
|
ECMACryptFile crypt_file;
|
|
bool result = false, bDataIntegrity = false;
|
|
|
|
std::wstring srcFileName = L"D:\\tests\\__63\\tests-eq-xlsx.xlsx";
|
|
std::wstring dstFileName = L"D:\\tests\\__63\\ыпауыувыкепцукепчм.xlsx";
|
|
std::wstring dstFileName2 = dstFileName + L".oox";
|
|
|
|
//std::wstring dstFileName = srcFileName + L".oox";
|
|
//std::wstring dstFileName2 = dstFileName + L"-mycrypt.docx";
|
|
|
|
//std::wstring srcFileName = L"D:\\test\\_crypted\\test.docx";
|
|
//std::wstring dstFileName3 = srcFileName + L"-mycrypt1.docx";
|
|
|
|
//std::wstring srcFileName1 = L"D:\\test\\_crypted\\test-111.docx-ms.docx";
|
|
//std::wstring dstFileName1 = srcFileName1 + L".oox";
|
|
//result = crypt_file.DecryptOfficeFile(srcFileName1, dstFileName1, password, bDataIntegrity);
|
|
|
|
|
|
result = crypt_file.EncryptOfficeFile(srcFileName, dstFileName, password, L"123456789");
|
|
//result = crypt_file.DecryptOfficeFile(dstFileName, dstFileName2, password, bDataIntegrity);
|
|
|
|
std::wstring addit_name = L"11111111111111111111111111111";
|
|
|
|
for (size_t i = 0; i < 100; ++i)
|
|
{
|
|
std::string addit_info = crypt_file.ReadAdditional(dstFileName, addit_name);
|
|
|
|
std::wstring temp = NSFile::CFileBinary::CreateTempFileWithUniqueName(L"", L"asd");
|
|
//
|
|
addit_info += std::string(temp.begin(), temp.end());
|
|
|
|
crypt_file.WriteAdditional(dstFileName, addit_name, addit_info);
|
|
}
|
|
_CrtDumpMemoryLeaks();
|
|
return 0;
|
|
}
|