diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-12-07 19:37:16 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-12-07 19:37:16 -0200 |
commit | f3f82d4c473be976dc255181d6049a80ea74cb5d (patch) | |
tree | 8937c2a7c7d9fb4de7b593ebd029a9f3f4fbedca | |
parent | a0cdc1d6f8d6d749643fd050518f1597226b788a (diff) | |
download | padrao-f3f82d4c473be976dc255181d6049a80ea74cb5d.tar.gz padrao-f3f82d4c473be976dc255181d6049a80ea74cb5d.tar.bz2 |
Keys: support for ed25519 on ssh-keygen
-rw-r--r-- | keys.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -58,7 +58,8 @@ Chaves pessoais Para gerar uma chave SSH pessoal, use um comando do tipo - ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa -C "seu@email" + ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa -C "seu@email" + ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -C "seu@email" Esse comando irá gerar uma **chave privada** em `~/.ssh/id_rsa` e uma respectiva **chave pública** em `~/.ssh/id_rsa.pub`. Se você já possui uma chave em `~/.ssh/id_rsa` e quiser mantê-la, escolha outro nome para a nova chave, como por exemplo `~/.ssh/id_rsa_aplicacao`. |