How to save all generated hashes to file?
#1
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?
#2
hashcat does not provide an interface for such a thing.
#3
Bash one liner for the win:
Code:
while read -r line; do echo "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
#4
ftfy

(08-17-2017, 09:22 AM)MrMeeseeks Wrote: Bash one liner for the win:
Code:
while read -r line; do echo -n "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
#5
Thank you!