hashcat Forum
Generating a SHA256 Hash from another Hash - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: General Talk (https://hashcat.net/forum/forum-33.html)
+--- Thread: Generating a SHA256 Hash from another Hash (/thread-5426.html)

Pages: 1 2


RE: Generating a SHA256 Hash from another Hash - undeath - 05-02-2016

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


RE: Generating a SHA256 Hash from another Hash - stepMode - 05-03-2016

Ooh now I get it, well yeah I guess the answer to that was already provided.