HashedPasswordBruteForce

After downloading write in your terminal:

To make a hash to test on it:

$ gcc -o hash hash.c -lcrypt
$ ./hash password

Example:

$ ./hash hello
Result:
$ 50l5IR0THCAN6

For the serial version:

$ gcc -o crack crack.c -lcrypt -lm
$ ./crack hashedpassword

For the parallel version: (not finished yet)

Inside parallelVersion directory:

$ bash ./script
$ ./parallel_crack hashedpassword threads_number