05-02-2016, 05:14 PM
Xsample is under the ill impression that someone would crack each step of an iterated hash separately.
here's the pseudo-code of how hash cracking really works:
hash_algo is completely exchangeable and it does not matter if this is SHA1, SHA512, 10x SHA512 or PBKDF2-SHA512
here's the pseudo-code of how hash cracking really works:
Code:
for candidate in candidate_list:
if hash_algo(candidate) == searched_hash:
return candidate
hash_algo is completely exchangeable and it does not matter if this is SHA1, SHA512, 10x SHA512 or PBKDF2-SHA512