come posso controllare la mia passphrase rsa?


19

Penso di aver dimenticato la mia RSA passphrase di nuovo .

C'è un modo per farmi richiedere dalla mia riga di comando locale in modo da poter verificare se almeno quello che ricordo è corretto, quindi non lo cambio inutilmente?

La prossima volta lo scrivo su un post-it;)


Come stai usando la chiave RSA - Login SSH? Certificati server Web?
Douglas Leeder,

github e ssh login
joachim

Risposte:


27

Uso:

ssh-keygen -y

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

Esempio: $ ssh-keygen -y -f ~ / .ssh / id_rsa_file Questo richiederà "Inserisci passphrase:". Data una passphrase errata, verrà visualizzato "caricamento non riuscito", altrimenti verrà stampata la chiave pubblica OpenSSH su stdout.


6

Prova 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.
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.