Hashcat speed benchmark vs recovery - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashcat speed benchmark vs recovery (/thread-9822.html) |
Hashcat speed benchmark vs recovery - LittleKita - 01-26-2021 Hi, i have a Nvidia TITAN Xp. I did various tests with md5 to compare speeds. Code: hashcat --benchmark -D 2 -m 0 -d 2 Why are the numbers so different from the benchmark? Have I possibly used the wrong parameters? Or is it the host system? Regards, LittleKita RE: Hashcat speed benchmark vs recovery - Mem5 - 01-27-2021 You don't use the same devices : --benchmark -D 2 -m 0 -d 2 # 1 hash hashcat -D 2 -d 1 And obviously, the more hashes you give, the less speed you get. Benchmark is done with 1 hash. RE: Hashcat speed benchmark vs recovery - LittleKita - 01-27-2021 Thanks, sorry "-d 1/2" was copy/paste problem. 1 vs 32 hashes only the half of the speed? I thought the hash computation don't increase only the compares. I don't understand why the speed goes down. Regards, LittleKita RE: Hashcat speed benchmark vs recovery - undeath - 01-27-2021 You can gain a litte higher cracking rates by adding -w3. This is what benchmark uses. As to 1 vs 32: you can apply significant optimizations with only a single target hash that are not possible with multiple hashes. RE: Hashcat speed benchmark vs recovery - LittleKita - 01-27-2021 Thanks, I've tried "-w 3" but got only minimal improvement. I think the benchmark is only for GPU comparison, not for realistic rates to restore hash's. These depend more on the parameters, e.g. hash count/masks/dictionary. Regards, LittleKita |