Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Generating a SHA256 Hash from another Hash
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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:
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
Ooh now I get it, well yeah I guess the answer to that was already provided.
Pages: 1 2