Benchmarks and Password per second - 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: Benchmarks and Password per second (/thread-9157.html) |
Benchmarks and Password per second - theNosieKnows - 04-23-2020 Hi everyone, I should collect some data on the performance of the latest version of hashcat. In particular, I'm interested at computing the number of passwords that can be hashed in the time unit for different hash functions. At the moment, I'm using the option -b (e.g., ./hashcat -m 17600 -b), obtaining the number of hashes per second (e.g., 1893.2 MH/s). Now, it is not clear to me if the MH/s means "million of passwords hashed per second" or "million of hash iterations per second". If the second interpretation is the correct one, I can compute the number of passwords hashed per second by dividing it for the number of rounds of the hash function, right? Thanks, RE: Benchmarks and Password per second - philsmd - 04-24-2020 (kilo, mega, giga, tera) hashes per second several algorithms do not have iterations (raw hashes for instance). The iteration count is mentioned separately, just try it yourself: Code: hashcat -m 7400 -b RE: Benchmarks and Password per second - theNosieKnows - 04-24-2020 (04-24-2020, 08:41 AM)philsmd Wrote: (kilo, mega, giga, tera) hashes per second Ok, thanks. Let me check if I understood correctly. Here, some examples: In case of bcrypt: Code: Hashmode: 3200 - bcrypt $2*$, Blowfish (Unix) (Iterations: 32) Instead, for SHA3-512: Code: Hashmode: 17600 - SHA3-512 Is this correct? RE: Benchmarks and Password per second - undeath - 04-25-2020 (04-24-2020, 10:59 AM)theNosieKnows Wrote: no, the number of guesses per second is 60227 for a bcrypt hash with 32 iterations |