]> git.sesse.net Git - freerainbowtables/blob - Client Applications/rcracki_mt/sha1.h
test
[freerainbowtables] / Client Applications / rcracki_mt / sha1.h
1 /*
2  * rcracki_mt is a multithreaded implementation and fork of the original 
3  * RainbowCrack
4  *
5  * Copyright 2009, 2010 DaniĆ«l Niggebrugge <niggebrugge@fox-it.com>
6  * Copyright 2009, 2010 James Nobis <frt@quelrod.net>
7  *
8  * This file is part of rcracki_mt.
9  *
10  * rcracki_mt is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * rcracki_mt is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with rcracki_mt.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24 #ifndef SHA1_H
25 #define SHA1_H
26
27 #include "global.h"
28
29 #define SHA1_DIGEST_LENGTH 20
30
31 void SHA1_NEW( unsigned char * pData, int length, unsigned char * pDigest);
32
33 #endif /* !SHA1_H */