From: "Carlos Rica" <jasampler@gmail.com>
To: "Johannes Schindelin" <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org, "Junio C Hamano" <gitster@pobox.com>
Subject: Re: [PATCH] Make verify-tag a builtin.
Date: Mon, 23 Jul 2007 23:21:03 +0200 [thread overview]
Message-ID: <1b46aba20707231421k54ad2796i5c2f21cf11b4bea5@mail.gmail.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0707230141080.14781@racer.site>
2007/7/23, Johannes Schindelin <Johannes.Schindelin@gmx.de>:
> On Mon, 23 Jul 2007, Carlos Rica wrote:
> > +static int run_gpg_verify(const char *buf, unsigned long size, int verbose)
> > +{
> > + struct child_process gpg;
> > + const char *args_gpg[] = {"gpg", "--verify", "FILE", "-", NULL};
> > + char *path, *eol;
> > + size_t len;
> > + int fd, ret;
> > +
> > + path = xstrdup(git_path("VTAG_TMP"));
> > + fd = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
> > + if (fd < 0)
> > + return error("could not create temporary file '%s': %s",
> > + path, strerror(errno));
> > + if (write_in_full(fd, buf, size) < 0)
> > + return error("failed writing temporary file '%s': %s",
> > + path, strerror(errno));
> > + close(fd);
>
> I just tested something like "gpg --verify - - < <filename>" and it
> worked...
I couldn't verify tags using "gpg --verify - - <file" as you
pointed in your response.
In my tests, it only allowed me to run:
"gpg --verify file.asc" or
"gpg --verify <file.asc" or
"gpg --verify - <file.asc"
when file.asc was generated using the command "gpg --clearsign file",
in which it inserts a header:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
<empty-line>
I even tested to insert the header myself after creating a signed file
as git does:
cp file otherfile
gpg -bsa otherfile
...
cat otherfile.asc >>otherfile
( echo -e "-----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA1\n" ; cat
otherfile ) \
| gpg --verify
Note that sending them to "diff file.asc -" also shows different signatures,
but anyway it also says "gpg: BAD signature from ...", the same message as in:
gpg --verify - - <otherfile
and different from the "gpg: Good signature from ..." when I run:
gpg --verify file.asc
next prev parent reply other threads:[~2007-07-23 21:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-23 0:20 [PATCH] Make verify-tag a builtin Carlos Rica
2007-07-23 0:52 ` Johannes Schindelin
2007-07-23 21:21 ` Carlos Rica [this message]
2007-07-23 21:48 ` Johannes Schindelin
2007-07-23 22:31 ` Carlos Rica
2007-07-23 22:32 ` Johannes Schindelin
-- strict thread matches above, loose matches on Subject: below --
2007-07-27 4:07 Carlos Rica
2007-07-27 7:05 ` Junio C Hamano
2007-07-27 19:51 ` Carlos Rica
2007-07-27 21:08 ` Junio C Hamano
2007-07-28 18:02 ` Carlos Rica
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1b46aba20707231421k54ad2796i5c2f21cf11b4bea5@mail.gmail.com \
--to=jasampler@gmail.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).