forked from defuse/crackstation-hashdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashlib.h
221 lines (170 loc) · 4.75 KB
/
hashlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#ifndef CRACKSTATION_HASHLIB_H
#define CRACKSTATION_HASHLIB_H
#include <algorithm>
#include <array>
#include <cstring>
#include <memory>
#include <stdexcept>
#include <string>
#include <vector>
#include <openssl/des.h>
#include <openssl/md4.h>
#include <openssl/md5.h>
#include <openssl/ripemd.h>
#include <openssl/sha.h>
#include <openssl/whrlpool.h>
#include "util.h"
class HashLib {
public:
typedef std::vector<byte>::size_type size_type;
class Hash;
static HashLib * getHasher( std::string hashName );
static const std::vector<std::string> & getHashes();
static std::string getHashesStr( const std::string & delim = " " );
virtual Hash hash( const char * stringToHash );
virtual Hash hash( const std::string & stringToHash );
virtual Hash hash( const byte * stringToHash, size_t strSize ) = 0;
virtual size_type getLength() = 0;
protected:
static constexpr size_type length = 0;
private:
static std::vector<std::string> hashes;
};
class HashLib::Hash {
public:
Hash();
Hash( byte* bytes, size_type size );
Hash( const Hash & lhs );
byte getNthByte( size_type index ) const;
size_type getLength() const;
std::string toString() const;
void fromString( std::string str );
bool partialMatch( const Hash &lhs ) const;
Hash & operator=( const Hash & lhs );
bool operator==( const Hash &lhs ) const;
bool operator!=( const Hash &lhs ) const;
byte operator[]( size_type index ) const;
friend std::ostream & operator<<( std::ostream & rhs, const Hash & lhs );
private:
std::vector<byte> bytes;
};
// Hashing algorithms:
class HashMD4 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = MD4_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashMD5 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = MD5_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashSHA1 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashSHA224 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA224_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashSHA256 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA256_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashSHA384 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA384_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashSHA512 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA512_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashMySQL41 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = SHA_DIGEST_LENGTH;
private:
byte hashStorage[length];
byte hashStorage2[length];
};
class HashRIPEMD160 : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = RIPEMD160_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashWhirlpool : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = WHIRLPOOL_DIGEST_LENGTH;
private:
byte hashStorage[length];
};
class HashLM : public HashLib {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
virtual size_type getLength();
protected:
static constexpr size_type length = 16;
private:
static constexpr char* message = const_cast<char *>("\x4b\x47\x53\x21\x40\x23\x24\x25");
byte hashStorage[length];
void DESencrypt( const byte * data, byte * storage );
};
class HashNTLM : public HashMD4 {
public:
using HashLib::hash;
virtual Hash hash( const byte * stringToHash, size_t strSize );
};
#endif