From: David Llewellyn-Jones Date: Wed, 24 Aug 2016 08:17:30 +0000 (+0100) Subject: Remove prevention of mangling X-Git-Url: https://www.flypig.org.uk/git/?p=hashcat.git;a=commitdiff_plain;h=9b4e6056d452fa9429112eafaf7cced19e63f09c Remove prevention of mangling The code added to the benchmark section seems to prevent the mangle flag from working. This removes the code to hopefully fix it. --- diff --git a/src/hashcat.c b/src/hashcat.c index 85fe750..057663d 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -7916,7 +7916,7 @@ int main (int argc, char **argv) dgst_pos1 = 3; dgst_pos2 = 2; dgst_pos3 = 1; - mangle = 0; +// mangle = 0; break; case 1: hash_type = HASH_TYPE_MD5; @@ -7941,7 +7941,7 @@ int main (int argc, char **argv) dgst_pos1 = 3; dgst_pos2 = 2; dgst_pos3 = 1; - mangle = 1; +// mangle = 1; break; case 10: hash_type = HASH_TYPE_MD5;