서명을 확인할 때 완전한 GPG 지문을 어떻게 찾나요?

서명을 확인할 때 완전한 GPG 지문을 어떻게 찾나요?

서명 파일을 마우스 오른쪽 버튼으로 클릭하고 추가 GpgEX 옵션 -> 확인을 클릭하면 서명 파일이 유효하다고 말하고 내 이메일 주소와 지문의 마지막 8자리 16진수가 표시됩니다. 마우스 오른쪽 버튼을 클릭한 다음 GPGshell -> "Decrypt.../Verify/Import"를 선택하면 동일한 결과가 나타납니다. 이것을 실제로 확인하고 싶다면 40개의 16진수를 모두 원할 것입니다. 인증 시 지문 40자리를 모두 보려면 어떻게 해야 하나요?

답변1

터미널(명령 프롬프트)에서 수행하는 것은 어떻습니까?

gpg --fingerprint <user_id>

그리고 gpg 매뉴얼 페이지에서:

  --fingerprint
          List all keys (or the specified ones) along with  their  finger‐
          prints.  This  is  the  same  output as --list-keys but with the
          additional output of a line with the fingerprint.  May  also  be
          combined  with  --list-sigs or --check-sigs.  If this command is
          given twice, the fingerprints of all secondary keys  are  listed
          too.

관련 정보