rsa 암호를 어떻게 확인할 수 있습니까?


20

RSA 암호를 다시 잊어 버린 것 같습니다 .

적어도 내가 기억하는 것이 올바른지 확인할 수 있도록 로컬 명령 줄에 프롬프트를 표시하는 방법이 있습니까? 그래서 불필요하게 변경하지 않아도됩니까?

다음에 나는 그것을 포스트잇에 쓰고있다;)


RSA 키-SSH 로그인을 어떻게 사용하고 있습니까? 웹 서버 인증서?
Douglas Leeder

github 및 ssh 로그인
joachim

답변:


29

사용하다:

ssh-keygen -y

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

예 : $ ssh-keygen -y -f ~ / .ssh / id_rsa_file "암호 입력 :"메시지가 나타납니다. 잘못된 암호가 주어지면 "로드 실패"라고 표시되고 그렇지 않으면 OpenSSH 공개 키를 stdout에 인쇄합니다.


6

시도 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.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.