]> git.sesse.net Git - freerainbowtables/blob - Client Applications/rcracki_mt/HashRoutine.h
test
[freerainbowtables] / Client Applications / rcracki_mt / HashRoutine.h
1 /*
2  * rcracki_mt is a multithreaded implementation and fork of the original 
3  * RainbowCrack
4  *
5  * Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
6  * Copyright Martin Westergaard Jørgensen <martinwj2005@gmail.com>
7  * Copyright 2009, 2010 Daniël Niggebrugge <niggebrugge@fox-it.com>
8  * Copyright 2009, 2010 James Nobis <frt@quelrod.net>
9  *
10  * This file is part of rcracki_mt.
11  *
12  * rcracki_mt is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * rcracki_mt is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with rcracki_mt.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26 #ifndef _HASHROUTINE_H
27 #define _HASHROUTINE_H
28
29 #include <string>
30 #include <vector>
31
32 #include "global.h"
33
34 using namespace std;
35
36 typedef void (*HASHROUTINE)(unsigned char* pPlain, int nPlainLen, unsigned char* pHash);
37
38 class CHashRoutine  
39 {
40 public:
41         CHashRoutine();
42         virtual ~CHashRoutine();
43
44 private:
45         vector<string>          vHashRoutineName;
46         vector<HASHROUTINE>     vHashRoutine;
47         vector<int>                     vHashLen;
48         void AddHashRoutine(string sHashRoutineName, HASHROUTINE pHashRoutine, int nHashLen);
49
50 public:
51         string GetAllHashRoutineName();
52         void GetHashRoutine(string sHashRoutineName, HASHROUTINE& pHashRoutine, int& nHashLen);
53 };
54
55 #endif