简体   繁体   中英

Cannot verify PGP signature for veracrypt executable

I just downloaded a fresh copy of veracrypt from the official website, however I'm having some trouble verifying its signature.

Here's what I did:

  1. gpg import veracrypt.asc (from here )
  2. -gpg --verify "VeraCrypt Setup 1.24-Update7.exe.sig" "VeraCrypt Setup 1.24-Update7.exe"

PGP for some reason is unable to verify the signature, what gives?

If you'd provide GPG output it would be easier to answer. However, most likely the reason is in redundant parameter, your command line should be like:

gpg --verify "VeraCrypt Setup 1.24-Update7.exe.sig" , given that both .sig and .exe files are put in the same directory.

This is called 'detached signature': .exe.sig file contains signature itself, and GnuPG would look for the signed contents in a file without .sig extension.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM