驗證簽名時如何找到完整的GPG指紋?

驗證簽名時如何找到完整的GPG指紋?

當我右鍵單擊簽名檔案並單擊更多 GpgEX 選項 -> 驗證時,它表示該檔案有效,並顯示我的電子郵件地址和指紋的最後 8 位十六進制數字。右鍵單擊然後 GPGshell ->“解密.../驗證/導入”給出相同的結果。如果我想驗證這一點是否真實,我需要全部 40 個十六進位數字。驗證時如何查看某人指紋的全部 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.

相關內容