como posso verificar minha senha rsa?

19

Acho que esqueci minha senha do RSA novamente .

Existe uma maneira de minha linha de comando local me solicitar, para que eu possa verificar se pelo menos o que me lembro está correto, para que eu não mude desnecessariamente?

Da próxima vez que eu estiver escrevendo em um post-it;)

joachim
fonte
Como você está usando a chave RSA - login SSH? Certificados de servidor da Web?
Douglas Leeder
github e ssh login
joachim

Respostas:

27

Usar:

ssh-keygen -y

-y      This option will read a private OpenSSH format file and
        print an OpenSSH public key to stdout.

Ex: $ ssh-keygen -y -f ~ / .ssh / id_rsa_file Isso solicitará "Digite a senha:". Dada uma senha incorreta, ele dirá "falha no carregamento", caso contrário, imprimirá a chave pública do OpenSSH no stdout.

Al Conrad
fonte
6

Tente ssh-keygen -p:

-p      Requests changing the passphrase of a private key file instead of
        creating a new private key.  The program will prompt for the file
        containing the private key, for the old passphrase, and twice for
        the new passphrase.
blahdiblah
fonte