X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Client%20Applications%2Frcracki_mt%2FMemoryPool.h;h=a53c4861cb9821721ad6df683ccce87c038979e3;hb=ce75ca839a9cd1863ea13636ffebf7ee1dcc4267;hp=91d821408a5e1b4dcfe91120bb48e840349afc28;hpb=4d512f6f97940c2f10ab435ef017e39cdc69837a;p=freerainbowtables diff --git a/Client Applications/rcracki_mt/MemoryPool.h b/Client Applications/rcracki_mt/MemoryPool.h index 91d8214..a53c486 100644 --- a/Client Applications/rcracki_mt/MemoryPool.h +++ b/Client Applications/rcracki_mt/MemoryPool.h @@ -1,26 +1,49 @@ -/* - RainbowCrack - a general propose implementation of Philippe Oechslin's faster time-memory trade-off technique. - - Copyright (C) Zhu Shuanglei -*/ - -#ifndef _MEMORYPOOL_H -#define _MEMORYPOOL_H - -class CMemoryPool -{ -public: - CMemoryPool(unsigned int bytesForChainWalkSet); - virtual ~CMemoryPool(); - -private: - unsigned char* m_pMem; - unsigned int m_nMemSize; - - unsigned int m_nMemMax; - -public: - unsigned char* Allocate(unsigned int nFileLen, unsigned int& nAllocatedSize); -}; - -#endif +/* + * rcracki_mt is a multithreaded implementation and fork of the original + * RainbowCrack + * + * Copyright (C) Zhu Shuanglei + * Copyright Martin Westergaard Jørgensen + * Copyright 2009, 2010 Daniël Niggebrugge + * Copyright 2009, 2010 James Nobis + * Copyright 2010 uroskn + * + * This file is part of racrcki_mt. + * + * rcracki_mt is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * rcracki_mt is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with rcracki_mt. If not, see . + */ + +#ifndef _MEMORYPOOL_H +#define _MEMORYPOOL_H + +#include "global.h" + +class CMemoryPool +{ +public: + CMemoryPool(unsigned int bytesSaved, bool bDebug, uint64 maxMem); + virtual ~CMemoryPool(); + +private: + bool debug; + unsigned char* m_pMem; + uint64 m_nMemSize; + + uint64 m_nMemMax; + +public: + unsigned char* Allocate(unsigned int nFileLen, uint64& nAllocatedSize); +}; + +#endif