Created
September 27, 2018 09:58
-
-
Save jahe/04ffe7b31ce7379db3c3f374fea34a25 to your computer and use it in GitHub Desktop.
Key / Password Generation Cheatsheet
This file contains 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
# Generate a safe password with node.js | |
node -e "console.log(require('crypto').randomBytes(256).toString('base64'));" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment