Wywołanie_i/o #11

Merged
yanczi merged 2 commits from Wywołanie_i/o into master 2025-12-15 15:32:34 +01:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit b4f6d3a85a - Show all commits

View file

@ -37,10 +37,10 @@ public:
ChunkManager(EncryptionManager& em); ChunkManager(EncryptionManager& em);
~ChunkManager(); ~ChunkManager();
// Kompresja danych // Podział na chunki
std::vector<char> chunked(const std::vector<char>&, const bool&, const bool&); std::vector<char> chunked(const std::vector<char>&, const bool&, const bool&);
// Dekompresja // Zcalanie chunków
std::vector<char> dechunked(const std::vector<char>&, const bool&, const bool&); std::vector<char> dechunked(const std::vector<char>&, const bool&, const bool&);
private: private:

View file

@ -29,6 +29,10 @@
#define VERSION 300 #define VERSION 300
// WielkoϾ pojedynczego bloku strumienia
#define CHUNK_STREAM_512KB 524288 // 512KB
#define CHUNK_STREAM_16MB 16777216 // 16MB
enum StoreMethod enum StoreMethod
{ {
FILTERING = -1, FILTERING = -1,