Created
September 23, 2019 16:15
-
-
Save kas-cor/904c6ba731f76daa1a5c9628307b124f to your computer and use it in GitHub Desktop.
ssh-keygen
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
# gen ed25519 | |
ssh-keygen -o -a 100 -t ed25519 | |
# gen strong rsa | |
ssh-keygen -t rsa -b 4096 -o -a 100 | |
# new passphrase | |
ssh-keygen -f ~/.ssh/id_rsa -p -o -a 100 | |
# ssh-agent | |
eval $(ssh-agent -s) | |
ssh-add |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment