hashcat-utils-0.5_expander.patch
Code:
9,11d8
< #define LEN_MIN 1
< #define LEN_MAX 8
<
49c46
< if (argc != 1)
---
> if (argc != 3)
51c48
< fprintf (stderr, "usage: %s < infile > outfile\n", argv[0]);
---
> fprintf (stderr, "usage: %s len_min len_max < infile > outfile\n", argv[0]);
59a57,60
> int len_min = atoi(argv[1]);
>
> int len_max = atoi(argv[2]);
>
70c71
< for (n = LEN_MIN; n <= LEN_MAX; n++)
---
> for (n = len_min; n <= len_max; n++)