I've read a bunch on how to do using rsa. Now, how can I create multiple ssh keys using EdDSA i.e. id_ed25519
- I can't add the same existing key to multiple github accounts I own (key already in use)
- While attempting to create a second key, I'm unable to write a custom name (like one does when using rsa) inside the script
ssh-keygen -t ed25519_customname -C "[email protected]"
How can I create multiple EdDSA SSH keys?
-Cis appended to the public key as expected).ssh-keygen -t ed25519 -f ~/.ssh/ed25519_customname -C "[email protected]"