Last Updated: February 25, 2016
·
508
· bytespider

Quickly check the SHA1 of a string

Launch terminal and enter the following command

echo -n "some string" | openssl sha1

Clearly you'll want to replace "some string" with the string or password you want to SHA1.

*Note: If you're planning to use this to set a password, you should probably salt the password first.