password combinations amount multiplies after adding hashes
#1
I have txt with 1 000 000 passwords
When I am trying to crack ONE 3200 mode hash, it shows me in console progress of  1 000 000 combinations

When I am adding 10 hashes, it becomes 10 000 000 combinations, on 1 000 000 wordlist

It is how it is naturally working, or I am having some issues with paralell working?
Reply
#2
But while doing the same for md5, I am not facing such an issue. Is it becuase of each bcrypt hash = unique salt?
Reply
#3
All work must be done per unique salt, so each unique salt multiples the keyspace.
Reply