-
-
Save risan/7c84941067171cef79944978f42b77c6 to your computer and use it in GitHub Desktop.
Generate SSH key with Ed25519 key type
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
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "john@example.com" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good one! RSA no more!! Thanks for sharing.
Just no need the
-o
for new format in this case. As you said in your article "Actually, this option is implied when you specify the key type as ed25519."man ssh-keygen says "Ed25519 keys always use the new private key format":