📄 memorypool.h
字号:
/*
RainbowCrack - a general propose implementation of Philippe Oechslin's faster time-memory trade-off technique.
Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
*/
#ifndef _MEMORYPOOL_H
#define _MEMORYPOOL_H
class CMemoryPool
{
public:
CMemoryPool();
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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -