You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. #include <mpi.h>
  2. #include <stdio.h>
  3. #include <iostream>
  4. #include <string>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <stdint.h>
  8. #include <math.h>
  9. #include "genSha1.h"
  10. #include "Ttiming.h"
  11. using namespace std;
  12. #define lexSize 64 //rozmiar słownika musi być potęgą liczby 2!!!!
  13. #define maxStrSize 10 //maskymalny rozmiar szukanego hasła, nie moze być wiekszy niz 10!!
  14. #define minStrSize 2 //minimalny rozmiar szukanego hasła od 1 do maxStrSize
  15. #define offset 6 //ile bitów potrzeba do zapisania liczby lexSize-1 np lexSize=4 to wtedy offset = 2;
  16. #define mask 0x3f //np dla maxKomb zapisanego na 64bitach to jest 58 zer i 6 (czyli offset) jedynek: 0000000 0000000 0000000 0000000 0000000 0000000 0000000 00111111
  17. //"słownik"
  18. char lex[lexSize] = {'a','b','c','d','e','f','g','h',
  19. 'i','j','k','l','m','n','o','p',
  20. 'r','s','t','u','v','w','x','y',
  21. 'z','A','B','C','D','E','F','G',
  22. 'H','I','J','K','L','M','N','O',
  23. 'P','R','S','T','U','V','W','X',
  24. 'Y','Z','0','1','2','3','4','5',
  25. '6','7','8','9','_',' ','-','!',};
  26. int main(int argc, char** argv) {
  27. if(argc <2){
  28. cerr << "Usage: " << argv[0] << " <hash>" << endl;
  29. exit(1);
  30. }
  31. MPI_Init(NULL, NULL);
  32. int size,rank,strSize;
  33. TTiming czasomierzacz;
  34. MPI_Comm_size(MPI_COMM_WORLD, &size);
  35. MPI_Comm_rank(MPI_COMM_WORLD, &rank);
  36. uint64_t i; //licznik, 64 bit-owy bo maxStrSize * offset = 10 * 6 = 60 bit; 4 bity w "zapasie" :-)
  37. uint64_t maxKomb; //maxKomb to maksymalna ilosć kombinacji hasła = lexSize ^ strSize;
  38. char *str, *result;
  39. result = new char[41];
  40. str = new char[maxStrSize];
  41. czasomierzacz.Begin();
  42. maxKomb = pow(lexSize,minStrSize-1);
  43. for(strSize = minStrSize;strSize<=maxStrSize;strSize++){ //petla generujaca jaka ma być długość hasła z którego bedzie generowany hash
  44. maxKomb *= lexSize;
  45. i = rank;
  46. while(i<maxKomb){//generowanie różnych haseł
  47. for(int j=0;j<strSize;j++){
  48. str[j] = lex[(i >> (offset*j)) & mask];
  49. }
  50. sha1((unsigned char*)str,strSize,result); //obliczanie hash z wygenerowanego wcześniej hasła
  51. if(strcasecmp(argv[1],result) == 0){ //znalazłem odpowiedz 109
  52. cout<<endl<<" Złamałem hasha: ";
  53. for(int l=0;l<strSize;l++) cout<<str[l];
  54. cout<<endl;
  55. cout<<" Czas = "<<czasomierzacz.End()<<" ms"<<endl<<endl;
  56. MPI_Abort(MPI_COMM_WORLD, MPI_SUCCESS);
  57. }
  58. i+=size;
  59. }
  60. }
  61. if (!rank) cout << "Nie znaleziono!!!" << endl << endl;
  62. delete[] result;
  63. delete[] str;
  64. MPI_Finalize();
  65. }