hashcat Forum
Salted md5crypt speed question - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html)
+--- Thread: Salted md5crypt speed question (/thread-3088.html)



Salted md5crypt speed question - davejcb - 01-28-2014

Quick question-

I've noticed that if I run a salted ($1$salt$hash) md5crypt hash in mask attack, I only get full speed if I run it by itself, with the single-hash optimizer.

If I run it with another salted, or unsalted hash, I get half the speed- is this normal?

Thanks!


RE: Salted md5crypt speed question - coolbry95 - 01-28-2014

That is because there are more salts to load.


RE: Salted md5crypt speed question - epixoip - 01-28-2014

coolbry95 is correct. you have two salts, therefore each plaintext candidate needs to be hashed with each salt, cutting your effective speed in half. if you had 100 salts, your effective speed would be 100x slower.


RE: Salted md5crypt speed question - davejcb - 01-28-2014

Makes sense, just wanted to confirm.

Thank you!