Hello. I have txt file with 5 billion words. I need generate sha256 hashes for each of them. How can I do this with hashcat?
hashcat does not provide an interface for such a thing.
Bash one liner for the win:
Code:
while read -r line; do echo "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes