Como posso saber quantos bits minha chave ssh é?

83

Eu já criei uma chave ssh para mim em algum momento no passado. Não me lembro "quantos bits" é. Como posso saber?

Estou me perguntando porque estou usando a hospedagem em nearfreespeech.net e seu faq diz:

Can I configure my ssh connection to use a public key?

... we will not install keys that have a length less than 1536 bits ... We prefer that you use a key at least 2048 bits in length, and if you are generating a new key, the recommended length is 4096 bits.

    
por yairchu 09.05.2010 / 18:41

1 resposta

127
[palvarez@oizon ~]$ ssh-keygen -l -f ~/.ssh/id_rsa.pub
2048 2e:8c:fd:aa:9f:95:86:9e:b0:d2:a6:1a:7e:d3:3e:74 .ssh/id_rsa.pub (RSA)

2048 bits.

Explicação:

  -l          Show the fingerprint of the key file.
  -f filename Filename of the key file.
    
por 09.05.2010 / 18:47

Tags