2022-07-20 17:46:48 +00:00
|
|
|
# Creating an elliptic curve keypair (ed25519)
|
|
|
|
|
|
|
|
* Create: `ssh-keygen -a 100 -t ed25519 -f ~/.ssh/filename`
|
|
|
|
* Schema check:
|
|
|
|
* `ssh-keygen -lf ~/.ssh/filename`
|
|
|
|
* `ssh-keygen -lf ~/.ssh/filename.pub`
|
|
|
|
|
2023-05-01 08:50:41 +00:00
|
|
|
# Linux
|
|
|
|
|
|
|
|
You might need to run `ssh-add ~/.ssh/id_rsa` after setting up your key.
|