Skip to content

Instantly share code, notes, and snippets.

@scriptum
Created December 16, 2014 15:13
Show Gist options
  • Select an option

  • Save scriptum/8a26d0a7b5a6d408d064 to your computer and use it in GitHub Desktop.

Select an option

Save scriptum/8a26d0a7b5a6d408d064 to your computer and use it in GitHub Desktop.
Easy-to-remember passwords
#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