I have a list of emails in a txt file that a vendor is requesting to be MD5Hash encrypted. From my understanding MD5Hash isn't an encryption so I'm unsure how to do this.
Is there a terminal command to take a txt file and MD5hash every single email in the file so it is "encrypted"?
The only terminal command I know regarding MD5hash and the result when I MD5hash the file is below:
MD5 -r /Users/Me/Desktop/test_file.txt
Result is:
0240da8148f06ae774de0831eda20eee /Users/Me/Desktop/test_file.txt
Anyone know of a method to (I guess) MD5hash every single email in the file? There are 20k emails, so doing each one individually isn't an option. Or am I misunderstanding how MD5Hash should be used for an email list? And FYI I'm using Terminal on a Mac.
Thanks!