]> git.sesse.net Git - freerainbowtables/blob - BOINC software/BOINC client apps/distrrtgen/tmp/RainbowTableGenerator.cpp
399cd31bc0878dd6bd4b128c2f25be1fb9c98d52
[freerainbowtables] / BOINC software / BOINC client apps / distrrtgen / tmp / RainbowTableGenerator.cpp
1
2 #include "RainbowTableGenerator.h"
3 #include "ChainWalkContext.h"
4 #include <iostream>
5 #include <sstream>
6 #include <time.h>
7 #include <conio.h>
8
9 CRainbowTableGenerator::CRainbowTableGenerator()
10 {
11         m_nCurrentCalculatedChains = 0;
12 }
13
14 CRainbowTableGenerator::~CRainbowTableGenerator(void)
15 {
16 }
17
18 int CRainbowTableGenerator::CalculateTable(std::string sFilename, int nRainbowChainCount, std::string sHashRoutineName, std::string sCharsetName, int nPlainLenMin, int nPlainLenMax, int nRainbowTableIndex, int nRainbowChainLen, uint64 nChainStart, std::string sSalt)
19 {
20         return 0;
21 }
22