Created
December 16, 2014 15:13
-
-
Save scriptum/8a26d0a7b5a6d408d064 to your computer and use it in GitHub Desktop.
Easy-to-remember passwords
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Type any easy to remember string to generate strong passwords. | |
| wallet() { | |
| read -s p; openssl sha512 -binary <<< $USER$p | base64 -w12 | nl | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment