Page MenuHome GnuPG
Feed Advanced Search

Mar 18 2015

exi added projects to T1928: regression --passphrase-file ignored in gnupg 2.1.2: Arch, gnupg, Bug Report.
Mar 18 2015, 8:56 AM · Bug Report, gnupg, Arch

Mar 17 2015

dkg added projects to T1927: search by e-mail address should find e-mail-only User IDs.: gnupg, Bug Report.
Mar 17 2015, 6:37 PM · Bug Report, gnupg
werner closed T1926: Gpgtar produces corrupt binaries as Resolved.
Mar 17 2015, 12:05 PM · Bug Report, gnupg, gpgtar
werner added a comment to T1926: Gpgtar produces corrupt binaries.

Pushed your patch to master and 2.0. Thanks.

Mar 17 2015, 12:05 PM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

Mar 17 2015, 11:11 AM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

And the testscript I used to test this.

Mar 17 2015, 11:11 AM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

D289: 587_0001-gpgtar-Fix-extracting-files-with-size-512.patch

Mar 17 2015, 11:10 AM · Bug Report, gnupg, gpgtar
aheinecke reassigned T1926: Gpgtar produces corrupt binaries from aheinecke to werner.
Mar 17 2015, 11:10 AM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

In gpgtar-extract.c extract_regular

  for (n=0; n < hdr->nrecords;)
    {
      err = read_record (stream, record);
      if (err)
        goto leave;
      n++;
      nbytes = (n < hdr->nrecords)? RECORDSIZE : (hdr->size % RECORDSIZE);

^ this does not work for the last header if hdr->size size is a multiple of 512.
In that case the last record will not be written.

Please check my attached patch which fixes the problem.

Mar 17 2015, 11:10 AM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

To further minimize the test case:

dd if=/dev/urandom of=testfile count=1024 bs=1024
./gpgtar --encrypt --skip-crypto -- testfile > test.tar
./gpgtar --decrypt --skip-crypto -- test.tar
diff ./test.tar_1_/testfile ./testfile

Binary files ./test.tar_1_/testfile and ./testfile differ

last 512 bytes of testfile are missing after extracting it with gpgtar.

Mar 17 2015, 10:08 AM · Bug Report, gnupg, gpgtar
aheinecke changed Version from 2.0.27 to master on T1926: Gpgtar produces corrupt binaries.
Mar 17 2015, 9:51 AM · Bug Report, gnupg, gpgtar
aheinecke renamed T1926: Gpgtar produces corrupt binaries from Gpgtar / Kleopatra on Windows produces corrupt binaries to Gpgtar produces corrupt binaries.
Mar 17 2015, 9:51 AM · Bug Report, gnupg, gpgtar
aheinecke removed a project from T1926: Gpgtar produces corrupt binaries: gpg4win.
Mar 17 2015, 9:51 AM · Bug Report, gnupg, gpgtar
aheinecke added a comment to T1926: Gpgtar produces corrupt binaries.

Further tracked this problem down to be a gpgtar extraction issue.

Calling gpgtar on the decrypted archive with the same command kleopatra uses:

C:\Users\aheinecke\Desktop>type gpg-archive.tar |"c:\Program
Files\GNU\GnuPG\gpgtar.exe" --openpgp --skip-crypto --set-filename
C:/Users/aheinecke/Desktop/gpg-archive.tar.gpg --decrypt -- -

Produces the corrupted binary. Copying this archive to a GNU/Linux system and
extracting the tarball with GNU Tar produces a valid binary.

Next test on GNU/Linux with:

./gpgtar --version

gpgtar (GnuPG) 2.1.3-beta4

./gpgtar --openpgp --skip-crypto \

--set-filename /home/aheinecke/arbeit/gpg4win/gpg-archive.tar.gpg \
--decrypt -- /home/aheinecke/arbeit/gpg4win/gpg-archive.tar

sha1sum gpg-archive.tar_1_/gpg2.exe

2d387c8fb53d105c31e4cc2ec186e70a365b0c65 gpg-archive.tar_1_/gpg2.exe

tar -fx /home/aheinecke/arbeit/gpg4win/gpg-archive.tar
sha1sum gpg2.exe

54c8c2ec1083943e556255f76ff8f58e623c5b27 gpg2.exe

The second one is correct.

Mar 17 2015, 9:51 AM · Bug Report, gnupg, gpgtar
aheinecke set Version to 2.0.27 on T1926: Gpgtar produces corrupt binaries.
Mar 17 2015, 9:26 AM · Bug Report, gnupg, gpgtar
aheinecke added projects to T1926: Gpgtar produces corrupt binaries: gpg4win, gpgtar, gnupg, Bug Report.
Mar 17 2015, 9:26 AM · Bug Report, gnupg, gpgtar

Mar 16 2015

andy_s added a comment to T1853: ecdh/ecdsa private key export, MPI encoding oddity.

Mar 16 2015, 8:48 PM · Bug Report, gnupg, gnupg (gpg21)
andy_s added a comment to T1853: ecdh/ecdsa private key export, MPI encoding oddity.

The problem was with protected private keys - I've got my own tool for
decrypting them, and that's how I found the problem in the first place.

I've attached two keypairs which exhibit the issue, both in keyring and in
keybox+key formats (password is "password") - both use NIST P-256, and the
encryption key on Test2 (4e86073a308aa22e) has the extra leading zero byte on
its 'd' value.

Mar 16 2015, 8:48 PM · Bug Report, gnupg, gnupg (gpg21)
werner added a comment to T1853: ecdh/ecdsa private key export, MPI encoding oddity.

[Sorry, I didn't found your mail anymore.]

I fixed two bug related to the encoding of MPI created by ECC operations.
ab17f7b gpg: Create all MPIs with RFC-4880 correct length headers.
8bc1deb gpg: Fix broken write of opaque MPI length header.

However your problem was with private keys. Protected private keys or
non-protected? Can you add an example file.

Mar 16 2015, 8:23 PM · Bug Report, gnupg, gnupg (gpg21)
werner closed T1479: curl-shim TCP half-close causes interop issues as Resolved.
Mar 16 2015, 3:31 PM · Duplicate, Bug Report, gnupg
werner added a project to T1479: curl-shim TCP half-close causes interop issues: Duplicate.
Mar 16 2015, 3:31 PM · Duplicate, Bug Report, gnupg
werner added a comment to T1479: curl-shim TCP half-close causes interop issues.

Duplicate of T739

Mar 16 2015, 3:31 PM · Duplicate, Bug Report, gnupg
werner added a comment to T1479: curl-shim TCP half-close causes interop issues.

Was fixed with commit fe85638284880805b80778fe87ae551d3de0ca32 for 2.0 which is
a forwardport for the fix in 1.4 (see T739).

Mar 16 2015, 3:31 PM · Duplicate, Bug Report, gnupg
werner added projects to T1546: Windows command line prepends homedir to --keyring= path specification: Windows, Windows 32.
Mar 16 2015, 3:27 PM · Windows 32, Windows, Bug Report, gnupg
werner placed T1546: Windows command line prepends homedir to --keyring= path specification up for grabs.
Mar 16 2015, 3:27 PM · Windows 32, Windows, Bug Report, gnupg
werner closed T1447: TLS hostname selection uses insecure SRV data as Resolved.
Mar 16 2015, 3:24 PM · Bug Report, gnupg
werner added a comment to T1447: TLS hostname selection uses insecure SRV data.

Was fixed with commit 6b1f71055ebab36989e2089cfde319d2ba40ada7 for 2.0.
Was fixed with commit 5c557a51cdf37d9f50b3d5d7e11d17e6ea6bb2b8 for 1.4.

Mar 16 2015, 3:24 PM · Bug Report, gnupg
werner closed T1446: hkps SRV lookup discards port from SRV as Resolved.
Mar 16 2015, 3:22 PM · Bug Report, gnupg
werner removed a project from T1446: hkps SRV lookup discards port from SRV: In Progress.
Mar 16 2015, 3:22 PM · Bug Report, gnupg
werner added a comment to T1446: hkps SRV lookup discards port from SRV.

Fixed with commit ba9e974f1fd85b3dbbfb5e26d7a14f71d07c7cf2 for 2.0
Fixed with commit f2f12f41efe5a476833295dc6c44fcd887d0abe6 for 1.4

Mar 16 2015, 3:22 PM · Bug Report, gnupg
werner reopened T1447: TLS hostname selection uses insecure SRV data as "Open".
Mar 16 2015, 3:22 PM · Bug Report, gnupg
werner closed T1447: TLS hostname selection uses insecure SRV data as Resolved.
Mar 16 2015, 3:21 PM · Bug Report, gnupg
werner closed T1626: keyserver and curl-shim as Resolved.
Mar 16 2015, 3:15 PM · Info Needed, Bug Report, gnupg
werner removed a project from T1684: Messages with compression algorithm "0"/"Uncompressed" fail to decrypt: Restricted Project.
Mar 16 2015, 3:14 PM · Bug Report, gnupg
werner closed T1684: Messages with compression algorithm "0"/"Uncompressed" fail to decrypt as Resolved.
Mar 16 2015, 3:14 PM · Bug Report, gnupg
werner lowered the priority of T1747: Some command line options can not be abbreviated from Normal to Wishlist.
Mar 16 2015, 3:14 PM · Feature Request, gnupg
werner removed a project from T1747: Some command line options can not be abbreviated: Bug Report.
Mar 16 2015, 3:14 PM · Feature Request, gnupg
werner added a project to T1747: Some command line options can not be abbreviated: Feature Request.
Mar 16 2015, 3:14 PM · Feature Request, gnupg
werner closed T1781: "gpg --list-keys" fails when $GNUPGHOME is not writable as Resolved.
Mar 16 2015, 3:13 PM · Not A Bug, Debian, Bug Report, gnupg
werner added projects to T1819: "gpg --gen-key" failed on Windows: Windows, gnupg (gpg21), Windows 32.
Mar 16 2015, 3:11 PM · Duplicate, Windows 32, gnupg (gpg21), Windows, Bug Report, gnupg
werner closed T1912: iobuf.c: potential buffer overflows as Resolved.
Mar 16 2015, 3:10 PM · Not A Bug, Bug Report, gnupg
werner added a project to T1914: http.c: potential buffer overflow: Not A Bug.
Mar 16 2015, 3:09 PM · Not A Bug, Bug Report, gnupg
werner removed a project from T1914: http.c: potential buffer overflow: Mistaken.
Mar 16 2015, 3:09 PM · Not A Bug, Bug Report, gnupg
werner added a project to T1914: http.c: potential buffer overflow: Mistaken.
Mar 16 2015, 3:09 PM · Not A Bug, Bug Report, gnupg
werner lowered the priority of T1914: http.c: potential buffer overflow from High to Normal.
Mar 16 2015, 3:09 PM · Not A Bug, Bug Report, gnupg
werner closed T1914: http.c: potential buffer overflow as Resolved.
Mar 16 2015, 3:09 PM · Not A Bug, Bug Report, gnupg
werner lowered the priority of T1644: Do not expect KeyIDs to be unique from Unbreak Now! to Normal.
Mar 16 2015, 3:06 PM · gnupg (gpg22), S/MIME, Bug Report

Mar 13 2015

dkg added a comment to T1734: [SUGGESTION] Implement a function to re-generate public keys and(!) "stubs" from private keys stored on smartcard only.

This shows up elsewhere too:

http://forum.yubico.com/viewtopic.php?f=26&t=1171

says:

For some inexplicable reason, GnuPG cannot extract the public key from a
smartcard except during generation. That means that to use the key from
another computer, you either have to copy the public key from the original
computer's GnuPG keyring, or you need to set the URL attribute to a file
which contains the PGP public key block. Otherwise, the token is effectively
locked to a single computer, and unuseable if you happen to trash your
keyring unless you regenerate a key.

It would be nice to streamline this case.

Mar 13 2015, 10:50 PM · gnupg, Feature Request

Mar 11 2015

werner closed T1922: gpg 2.1 ignoring GPG_AGENT_INFO breaks gnome-keyring compatibility as Resolved.
Mar 11 2015, 5:57 PM · Not A Bug, Bug Report, gnupg
werner added a project to T1922: gpg 2.1 ignoring GPG_AGENT_INFO breaks gnome-keyring compatibility: Not A Bug.
Mar 11 2015, 5:57 PM · Not A Bug, Bug Report, gnupg
werner added a comment to T1922: gpg 2.1 ignoring GPG_AGENT_INFO breaks gnome-keyring compatibility.

GPG_AGENT_INFO is a private property of GnuPG and no other software may use it.
In fact gnome-keyring does worse things to the IPC between gpg and gpg-agent.
There is a even detection code in gpg to print a warning when gkr has hijacked
the IPC. cf. the long discussions at many MLS.

BTW, A socket has always been used.

Mar 11 2015, 5:57 PM · Not A Bug, Bug Report, gnupg
werner added a comment to T1923: gpg-agent does not stop on logout.

That is a matter of your OS and not of GnuPG.

Mar 11 2015, 5:54 PM · Bug Report, gnupg, Not A Bug
werner closed T1923: gpg-agent does not stop on logout as Resolved.
Mar 11 2015, 5:54 PM · Bug Report, gnupg, Not A Bug
werner added a project to T1923: gpg-agent does not stop on logout: Not A Bug.
Mar 11 2015, 5:54 PM · Bug Report, gnupg, Not A Bug
Jule added projects to T1923: gpg-agent does not stop on logout: gnupg, Bug Report.
Mar 11 2015, 3:27 PM · Bug Report, gnupg, Not A Bug
Jule added projects to T1922: gpg 2.1 ignoring GPG_AGENT_INFO breaks gnome-keyring compatibility: gnupg, Bug Report.
Mar 11 2015, 3:16 PM · Not A Bug, Bug Report, gnupg
Jule set Version to 2.1.2 on T1922: gpg 2.1 ignoring GPG_AGENT_INFO breaks gnome-keyring compatibility.
Mar 11 2015, 3:16 PM · Not A Bug, Bug Report, gnupg

Mar 10 2015

bernhard added a comment to T1921: Duplicated certificates in gpgsm pubring (2.1).

Except the for doubled listing, is there any other potential drawback?

Mar 10 2015, 9:08 PM · Bug Report, gnupg, dirmngr, S/MIME
aheinecke added a comment to T1921: Duplicated certificates in gpgsm pubring (2.1).

Mar 10 2015, 6:13 PM · Bug Report, gnupg, dirmngr, S/MIME
aheinecke updated subscribers of T1921: Duplicated certificates in gpgsm pubring (2.1).
Mar 10 2015, 6:13 PM · Bug Report, gnupg, dirmngr, S/MIME
aheinecke added projects to T1921: Duplicated certificates in gpgsm pubring (2.1): S/MIME, dirmngr, gnupg, Bug Report.
Mar 10 2015, 6:13 PM · Bug Report, gnupg, dirmngr, S/MIME
werner added a comment to T1917: Provide a way to determine available ECC Curves.

Done with commit 14af2be

$ gpg --with-colons --list-config curve
cfg:curve:ed25519;nistp256;nistp384;nistp521;brainpoolP256r1;brainpoolP384r1;brainpoolP512r1;secp256k1

Mar 10 2015, 3:45 PM · gnupg, Feature Request
werner closed T1917: Provide a way to determine available ECC Curves as Resolved.
Mar 10 2015, 3:45 PM · gnupg, Feature Request
werner added a project to T1912: iobuf.c: potential buffer overflows: Not A Bug.
Mar 10 2015, 10:03 AM · Not A Bug, Bug Report, gnupg
werner added a comment to T1912: iobuf.c: potential buffer overflows.

Please stop using this severely broken analyzer. It does not overflow anything.
Checkout the allocation of the bufgfger 3 lines earlier!

Mar 10 2015, 10:03 AM · Not A Bug, Bug Report, gnupg
werner added a comment to T1911: dotlock.c: ignoring return value of ‘link’, declared with attribute warn_unused_result.

No c+p of warnings please! Use gnupg-devel for such things.

Mar 10 2015, 9:23 AM · Bug Report, gnupg
werner closed T1911: dotlock.c: ignoring return value of ‘link’, declared with attribute warn_unused_result as Resolved.
Mar 10 2015, 9:23 AM · Bug Report, gnupg
werner closed T1913: signal.c: ignoring write failures in signal handler, continuing as if everything is OK. as Resolved.
Mar 10 2015, 9:23 AM · Bug Report, gnupg
werner added a comment to T1913: signal.c: ignoring write failures in signal handler, continuing as if everything is OK..

Plesase discuss on gnupg-devel. Thanks.

Mar 10 2015, 9:23 AM · Bug Report, gnupg
werner closed T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols. as Resolved.
Mar 10 2015, 9:20 AM · Bug Report, gnupg
werner added a comment to T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols..

Please ask on gnupg-devel!

Mar 10 2015, 9:20 AM · Bug Report, gnupg
werner added a comment to T1914: http.c: potential buffer overflow.

The first warning: The function is pretty short:

  void
  http_start_data (http_t hd)
  {
    if (!hd->in_data)
      {
        es_fputs ("\r\n", hd->fp_write);
        es_fflush (hd->fp_write);
        hd->in_data = 1;
      }
    else
      es_fflush (hd->fp_write);
  }

I do not understand how your analzyer gets to the conclusion that hd == NULL?

Mar 10 2015, 8:51 AM · Not A Bug, Bug Report, gnupg
werner added a comment to T1914: http.c: potential buffer overflow.

On the second warning:

Please view that in context:

  /* Append a new header. */
  h = xtrymalloc (sizeof *h + strlen (line));
  if (!h)
    return gpg_err_code_from_syserror ();
  strcpy (h->name, line);

How should that overflow a buffer? It has just been allocated - also check the
definition of the struct used for h.

Mar 10 2015, 8:46 AM · Not A Bug, Bug Report, gnupg

Mar 9 2015

aheinecke closed T1746: Bug report - GPG a folder to *.tar.gpg loss all files! as Resolved.
Mar 9 2015, 9:33 AM · Bug Report, gnupg, gpg4win
aheinecke removed a project from T1746: Bug report - GPG a folder to *.tar.gpg loss all files!: Restricted Project.
Mar 9 2015, 9:33 AM · Bug Report, gnupg, gpg4win
aheinecke added a comment to T1746: Bug report - GPG a folder to *.tar.gpg loss all files!.

Patch still needs to be applied upstream but this is tracked in another issue.
-> Resolved

Mar 9 2015, 9:33 AM · Bug Report, gnupg, gpg4win

Mar 6 2015

npcole added projects to T1917: Provide a way to determine available ECC Curves: Feature Request, gnupg.
Mar 6 2015, 1:13 PM · gnupg, Feature Request
npcole set Version to 2.1 on T1917: Provide a way to determine available ECC Curves.
Mar 6 2015, 1:13 PM · gnupg, Feature Request
JW added a comment to T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols..

Changed status to 'unread'. I'm not chatting.

Mar 6 2015, 11:36 AM · Bug Report, gnupg
JW added a comment to T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols..

I was able to duplicate Bug 1862: Building static GnuPG 2.1.2 fails due to
multiply defined symbols.


/home/jwalton/Desktop/gcrypt-2.0-analyze/libgpg-error-1.18/src/visibility.c:46:
multiple definition of `gpg_err_code_from_errno'
t-support.o:/home/jwalton/Desktop/gcrypt-2.0-analyze/gnupg-2.1.2/common/t-support.c:137:
first defined here
/home/jwalton/gpg-analyze/lib/libgpg-error.a(libgpg_error_la-visibility.o): In
function `gpg_err_code_from_syserror':
/home/jwalton/Desktop/gcrypt-2.0-analyze/libgpg-error-1.18/src/visibility.c:58:
multiple definition of `gpg_err_code_from_syserror'
t-support.o:/home/jwalton/Desktop/gcrypt-2.0-analyze/gnupg-2.1.2/common/t-support.c:151:
first defined here
collect2: error: ld returned 1 exit status
make[3]: * [t-stringhelp] Error 1
make[3]: Leaving directory
`/home/jwalton/Desktop/gcrypt-2.0-analyze/gnupg-2.1.2/common'
make[2]:
* [all] Error 2
make[2]: Leaving directory
`/home/jwalton/Desktop/gcrypt-2.0-analyze/gnupg-2.1.2/common'
make[1]: * [all-recursive] Error 1
make[1]: Leaving directory `/home/jwalton/Desktop/gcrypt-2.0-analyze/gnupg-2.1.2'
make:
* [all] Error 2


LIBRARY=gnupg
VERSION=2.1.2
FILE="$LIBRARY-$VERSION"

export PREFIX=/usr/local

cd "$FILE"
./configure --enable-static --disable-shared
--with-libgpg-error-prefix="$PREFIX" --with-libassuan-prefix="$PREFIX"
--with-ksba-prefix="$PREFIX" --with-npth-prefix="$PREFIX"
--with-libgcrypt-prefix="$PREFIX" --prefix="$PREFIX"

make

Mar 6 2015, 11:35 AM · Bug Report, gnupg
JW set Version to 2.1.2 on T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols..
Mar 6 2015, 9:54 AM · Bug Report, gnupg
JW added projects to T1915: Building static GnuPG 2.1.2 fails due to multiply defined symbols.: gnupg, Bug Report.
Mar 6 2015, 9:54 AM · Bug Report, gnupg
JW set Version to 2.1.2 on T1914: http.c: potential buffer overflow.
Mar 6 2015, 9:38 AM · Not A Bug, Bug Report, gnupg
JW added projects to T1914: http.c: potential buffer overflow: gnupg, Bug Report.
Mar 6 2015, 9:38 AM · Not A Bug, Bug Report, gnupg
JW added projects to T1913: signal.c: ignoring write failures in signal handler, continuing as if everything is OK.: gnupg, Bug Report.
Mar 6 2015, 9:34 AM · Bug Report, gnupg
JW set Version to 2.1.2 on T1912: iobuf.c: potential buffer overflows.
Mar 6 2015, 9:25 AM · Not A Bug, Bug Report, gnupg
JW added projects to T1912: iobuf.c: potential buffer overflows: gnupg, Bug Report.
Mar 6 2015, 9:25 AM · Not A Bug, Bug Report, gnupg
JW set Version to 2.1.2 on T1911: dotlock.c: ignoring return value of ‘link’, declared with attribute warn_unused_result.
Mar 6 2015, 9:22 AM · Bug Report, gnupg
JW added projects to T1911: dotlock.c: ignoring return value of ‘link’, declared with attribute warn_unused_result: gnupg, Bug Report.
Mar 6 2015, 9:22 AM · Bug Report, gnupg

Mar 4 2015

perske added a comment to T1862: Building static GnuPG 2.1.2 fails due to multiply defined symbols..

Platform: Red Hat Enterprise Linux 5.11

ldconfig: I did not (assuming that make install does it if necessary)

Running "sudo ldconfig" after each "sudo make install" does not help.

Mar 4 2015, 2:06 PM · Bug Report, gnupg
werner added a comment to T1862: Building static GnuPG 2.1.2 fails due to multiply defined symbols..

What platform? Did you run ldconfig after installing a library?

Mar 4 2015, 12:39 PM · Bug Report, gnupg
werner lowered the priority of T1862: Building static GnuPG 2.1.2 fails due to multiply defined symbols. from High to Normal.
Mar 4 2015, 12:39 PM · Bug Report, gnupg

Mar 3 2015

perske added a comment to T1644: Do not expect KeyIDs to be unique.

I really want to try, but I cannot compile 2.1.2 due to T1862.

Mar 3 2015, 7:38 PM · gnupg (gpg22), S/MIME, Bug Report
perske added projects to T1862: Building static GnuPG 2.1.2 fails due to multiply defined symbols.: gnupg, Bug Report.
Mar 3 2015, 7:36 PM · Bug Report, gnupg
werner added a project to T1861: gpgsm does not handle certificates with ambiguous name correctly: Duplicate.
Mar 3 2015, 2:46 PM · Duplicate, Bug Report, gnupg, gnupg (gpg20), S/MIME
werner added a comment to T1861: gpgsm does not handle certificates with ambiguous name correctly.

Duplicate of T1644

Mar 3 2015, 2:46 PM · Duplicate, Bug Report, gnupg, gnupg (gpg20), S/MIME
werner added a comment to T1861: gpgsm does not handle certificates with ambiguous name correctly.

Okay, I changed your role so that you can comment on T1644.

It is very unlikely that we are going to fix that in 2.0, thus be prepared to
move to 2.1.

Mar 3 2015, 2:46 PM · Duplicate, Bug Report, gnupg, gnupg (gpg20), S/MIME
klada added projects to T1861: gpgsm does not handle certificates with ambiguous name correctly: S/MIME, gnupg (gpg20), gnupg, Bug Report.
Mar 3 2015, 1:43 PM · Duplicate, Bug Report, gnupg, gnupg (gpg20), S/MIME
werner claimed T1847: Cannot read old keyring (issue 1793 related).
Mar 3 2015, 10:24 AM · Bug Report, gnupg
werner added a comment to T1847: Cannot read old keyring (issue 1793 related).

Thanks. It might be related to a left overPGP-2 key in the trustdb. I need to
investigate that closer.

Mar 3 2015, 10:24 AM · Bug Report, gnupg