如何在验证签名时找到完整的 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.

相关内容