-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashtable.cpp
476 lines (384 loc) · 8.96 KB
/
hashtable.cpp
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
#ifndef HASHTABLE_CPP
#define HASHTABLE_CPP
#include "hashtable.h"
static const unsigned int default_capacity = 11;
namespace cop4530
{
/*
default constructor
*/
HashTable::HashTable()
{
bucketVector.resize(default_capacity);
}
/*
Constructor initializes the vector to the
value of s
*/
HashTable::HashTable(size_t s)
{
bucketVector.resize(prime_below(s));
}
/*
destructor
*/
HashTable::~HashTable()
{
for(unsigned int i = 0; i < bucketVector.size(); i++)
{
bucketVector[i].clear();
}
}
/*
Loadfile function gets the file from user input
and reads the file to the end, storing each
username and password
*/
void HashTable::loadFile()
{
ifstream infile;
string file;
string name;
string password;
bool exists;
int index;
pair< string, string > info;
list< pair< string, string > >::iterator itr;
cout << "Enter password file name to load from: ";
cin >> file;
infile.open( file.c_str());
if(!infile)
{
cout << "*****Error: Unable to open file " << file << endl;
return;
}
for( ; ; )
{
exists = false;
if( infile.peek() == '\n')
{
infile.ignore( 1, '\n');
continue;
}
getline( infile, name, ':');
getline( infile, password, '\n' );
password = "$1$########$" + password;
info = make_pair(name, password);
if( infile.eof())
break;
index = Index(name);
itr = bucketVector[index].begin();
while(itr != bucketVector[index].end())
{
if(itr->first == name)
{
if(itr->second == password)
{
cout << "*****Error: Duplicate username '" << name;
cout << "'. Duplicate ignored." << endl;
exists = true;
break;
}
}
++itr;
}
if(!exists)
bucketVector[index].push_back(info);
}
infile.close();
}
/* function addUser recieves
input from the user. If the username is a
duplicate, the user is retured a message,
otherwise the new user is added to the
collection
*/
void HashTable::addUser()
{
string name;
string encryptedPass;
string password;
char salt[] = "$1$########";
char* charPass = new char[40];
int index;
pair< string, string > info;
list< pair< string, string > >::iterator itr;
cout << "Enter name: ";
cin >> name;
cout << "Enter password: ";
cin >> password;
index = Index(name);
itr = bucketVector[ index ].begin();
while(itr != bucketVector[index].end())
{
if(itr->first == name)
{
cout << endl << "*****Error: User already exists. Could not add user." << endl;
return;
}
++itr;
}
strcpy( charPass, crypt(password.c_str(), salt));
encryptedPass.assign(charPass);
info = make_pair(name, encryptedPass);
bucketVector[index].push_back(info);
cout << endl << "User " << name << " added."<< endl;
}
/*
function deleteUser recieves a username
from the user. If the name is found,
the index of the user is erased.
*/
void HashTable::deleteUser()
{
string name;
int index;
bool found = false;
list< pair< string, string > >::iterator itr;
cout << "Enter username: ";
cin >> name;
index = Index(name);
itr = bucketVector[index].begin();
while(itr != bucketVector[index].end())
{
if(itr->first == name)
{
bucketVector[index].erase(itr);
cout << "User " << name << " deleted." << endl;
found = true;
return;
}
++itr;
}
if(!found)
cout << "*****Error: User not found. Could not delete user" << endl;
}
/*
function changePass recieves a username and
password from the user. The user is then
instructed to give a new password. The new
password
*/
void HashTable::changePass()
{
string name;
string password;
string newPass;
string encryptedPass;
int index;
char* charPass = new char[40];
char salt[] = "$1$########";
list< pair< string, string > >::iterator itr;
cout << "Enter name : ";
cin >> name;
cout << "Enter Password : ";
cin >> password;
cout << endl << "Enter new password: ";
cin >> newPass;
index = Index(name);
itr = bucketVector[index].begin();
while(itr != bucketVector[index].end())
{
if(itr->first == name)
{
strcpy(charPass, crypt(password.c_str(), itr->second.c_str()));
encryptedPass.assign(charPass);
if(itr->second == encryptedPass)
{
strcpy(charPass, crypt(newPass.c_str(), salt));
encryptedPass.assign(charPass);
itr->second = encryptedPass;
cout << endl << "Password changed for user " << name << endl;
return;
}
else
{
cout << endl << "*****Error: Password incorrect. Could not change user password" << endl;
return;
}
}
itr++;
}
cout << endl << "*****Error: User not found. Could not change user password" << endl;
}
/*
function findUser recieves the username and
password for the desired user and returns
a message based on whether the user was
found or not
*/
void HashTable::findUser()
{
string name;
string password;
string encryptedPass;
int index;
char* charPass = new char[40];
list< pair< string, string > >::iterator itr;
cout << "Enter name : ";
cin >> name;
cout << "Enter password : ";
cin >> password;
index = Index(name);
itr = bucketVector[index].begin();
while(itr != bucketVector[index].end())
{
if(itr->first == name)
{
strcpy( charPass, crypt(password.c_str(), itr->second.c_str()));
encryptedPass.assign(charPass);
if(itr->second == encryptedPass)
{
cout << endl << "User '" << name << "' found." << endl;
return;
}
else
{
cout << endl << "User '" << name << "' not found." << endl;
}
}
++itr;
}
cout << endl << "User '" << name << "' not found." << endl;
}
/*
function print hash outputs the elements of bucketVector
*/
void HashTable::printHash()
{
list< pair< string, string > >::iterator itr;
string output;
string password;
for(unsigned int i = 0; i < bucketVector.size(); i++)
{
cout << "v[" << i << "]: ";
output.clear();
itr = bucketVector[i].begin();
while(itr != bucketVector[i].end())
{
if(itr->second[0] == '$')
{
password = itr->second.substr(12, 33);
}
else
{
password = itr->second;
}
output = itr->first + ":" + password;
cout << setw(34) << left << output;
++itr;
}
cout << endl;
}
}
/*
function size returns the size of the bucketVector
*/
int HashTable::size()
{
int size = 0;
for(unsigned int i = 0; i < bucketVector.size(); i++)
{
size = size + bucketVector[i].size();
}
return size;
}
/*
function writeFile allows the user to have the
contents of the bucketVector written to a file
*/
void HashTable::writeFile()
{
ofstream outfile;
string file;
string password;
list< pair< string, string > >::iterator itr;
cout << "Enter password file name to write to: ";
cin >> file;
outfile.open(file.c_str());
for(unsigned int i = 0; i < bucketVector.size(); i++)
{
itr = bucketVector[i].begin();
while(itr != bucketVector[i].end())
{
if(itr->second[0] == '$')
{
password = itr->second.substr(12, 33);
}
else
{
password = itr->second;
outfile << itr->first << ":" << password << endl;
}
++itr;
}
}
outfile.close();
}
/*
Private Member functions
*/
//Returns the bucket index where the pair should be inserted
unsigned int HashTable::Index (const string & key)
{
return hash_function(key) % bucketVector.capacity();
}
//Returns the hashed index
unsigned int HashTable::hash_function (const string & s)
{
unsigned int i;
unsigned long bigval = s[0];
for (i = 1; i < s.size(); ++i)
bigval = ((bigval & 65535) * 18000) + (bigval >> 16) + s[i];
bigval = ((bigval & 65535) * 18000) + (bigval >> 16);
return bigval & 65535;
}
// returns largest prime number <= n or zero if input is too large
// This is likely to be more efficient than prime_above(), because
// it only needs a vector of size n
unsigned int HashTable::prime_below (unsigned int n)
{
if (n > max_prime)
{
std::cerr << "** input too large for prime_below()\n";
return 0;
}
if (n == max_prime)
{
return max_prime;
}
if (n <= 1)
{
std::cerr << "** input too small\n";
return 0;
}
// now: 2 <= n < max_prime
vector <unsigned int> v (n + 1);
setPrimes(v);
while (n > 2)
{
if (v[n] == 1)
return n;
--n;
}
return 2;
}
//Sets all prime number indexes to 1. Called by method prime_below(n)
void HashTable::setPrimes(vector<unsigned int>& vprimes)
{
int i = 0;
int j = 0;
vprimes[0] = 0;
vprimes[1] = 0;
int n = vprimes.capacity();
for (i = 2; i < n; ++i)
vprimes[i] = 1;
for( i = 2; i*i < n; ++i)
{
if (vprimes[i] == 1)
for(j = i + i ; j < n; j += i)
vprimes[j] = 0;
}
}
}
#endif