como posso verificar minha senha rsa?

11

Acho que esqueci minha senha RSA novamente .

Existe uma maneira de solicitar a minha linha de comando local para que eu possa verificar se pelo menos o que eu lembro está correto, então não preciso alterá-lo desnecessariamente?

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

    
por joachim 07.06.2010 / 10:44

2 respostas

15

Uso:

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á "Inserir senha". Dada uma senha errada, ela diz "falha na carga", caso contrário, a chave pública do OpenSSH será impressa na stdout.

    
por 23.08.2015 / 05:11
5

Experimente 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.
    
por 11.06.2011 / 04:47