On the Basics page, under Verifying, there is the following example.
keybase verify foo.txt foo.txt.asc # verify a file + detatched signature
If foo.txt.asc is the detached signature, then this is the wrong order and produces an error:
$ keybase sign foo.txt --detach-sign
$ keybase verify foo.txt foo.txt.asc
warn: gpg: packet(1) with unknown version 184
warn: gpg: no signature found
warn: gpg: the signature could not be verified.
warn: Please remember that the signature file (.sig or .asc)
warn: should be the first file given on the command line.
Using the signature file first works:
$ keybase verify foo.txt.asc foo.txt
info: Valid signature from you
On the Basics page, under Verifying, there is the following example.
keybase verify foo.txt foo.txt.asc # verify a file + detatched signatureIf foo.txt.asc is the detached signature, then this is the wrong order and produces an error:
$ keybase sign foo.txt --detach-sign $ keybase verify foo.txt foo.txt.asc warn: gpg: packet(1) with unknown version 184 warn: gpg: no signature found warn: gpg: the signature could not be verified. warn: Please remember that the signature file (.sig or .asc) warn: should be the first file given on the command line.Using the signature file first works: