Page MenuHome GnuPG
Feed Advanced Search

Apr 16 2021

gniibe added a comment to T5384: pinentry coverity static analysis reports.

Actually, calling do_touch_file when some error(s) are not good.
Let me fix all the things.

Apr 16 2021, 5:02 AM · pinentry, Bug Report

Apr 15 2021

Jakuje added a comment to T5384: pinentry coverity static analysis reports.

I hope last amendment is the following, which can happen if the tty can be opened only for reading but not for writing:

--- a/tty/pinentry-tty.c
+++ b/tty/pinentry-tty.c
@@ -583,7 +583,8 @@ tty_cmd_handler (pinentry_t pinentry)
   if (pinentry->ttyname)
     {
       fclose (ttyfi);
-      fclose (ttyfo);
+      if (ttyfo)
+        fclose (ttyfo);
     }
Apr 15 2021, 11:43 AM · pinentry, Bug Report
gniibe changed the status of T4848: Usage of git in configure.ac for pinentry/gpa finds incorrect repositories from Open to Testing.

Done for gpa.
Please test.

Apr 15 2021, 7:08 AM · pinentry, gpa, toolchain, Bug Report
gniibe added a comment to T4848: Usage of git in configure.ac for pinentry/gpa finds incorrect repositories.

Done for pinentry.

Apr 15 2021, 6:36 AM · pinentry, gpa, toolchain, Bug Report

Apr 14 2021

Jakuje reopened T5384: pinentry coverity static analysis reports as "Open".

Thank you for applying the provided changes!

Apr 14 2021, 5:44 PM · pinentry, Bug Report
gniibe closed T5384: pinentry coverity static analysis reports as Resolved.

Applied and pushed.

Apr 14 2021, 8:58 AM · pinentry, Bug Report

Apr 13 2021

gniibe claimed T5384: pinentry coverity static analysis reports.

Thank you. I'll take care of this.

Apr 13 2021, 3:01 AM · pinentry, Bug Report

Apr 7 2021

Jakuje created T5384: pinentry coverity static analysis reports.
Apr 7 2021, 3:00 PM · pinentry, Bug Report

Apr 6 2021

werner triaged T5377: pinentry-qt dialog cannot be raised under Linux/Wayland as Normal priority.
Apr 6 2021, 9:56 AM · pinentry, Bug Report

Apr 1 2021

werner added a comment to T5377: pinentry-qt dialog cannot be raised under Linux/Wayland.

Seems that it is not a coincidence that Wayland starts with a W like Windows. ;-)

Apr 1 2021, 12:28 PM · pinentry, Bug Report
holi0317 created T5377: pinentry-qt dialog cannot be raised under Linux/Wayland.
Apr 1 2021, 12:11 PM · pinentry, Bug Report

Mar 25 2021

aheinecke added a comment to T4974: timeout for pinentry too short for key-generation, losing previous entries.

pinentry-timeout is indeed used when it is not set to 0.

Mar 25 2021, 12:15 PM · pinentry
aheinecke added a comment to T4974: timeout for pinentry too short for key-generation, losing previous entries.

In my opinion this is also a problem. Especially if you think about it for a while. The one minute timeout is too short and pinentry-timeout which I would expect here to be the config value to adjust this is not used.

Mar 25 2021, 11:53 AM · pinentry

Feb 24 2021

Aster89 added a comment to T5322: gpg erroring when the terminal is too small to show the ncurses pinentry dialog.

As suggested in the linked question on stackexchange, I think that even if the error comes from the pinentry program, GnuPG could echo a more informative error than gpg: decryption failed: No secret key, such as terminal to little to show the pinetnry program, or something similar.

Feb 24 2021, 2:37 PM · gnupg (gpg22), gpgagent, pinentry, Bug Report

Feb 23 2021

werner triaged T5322: gpg erroring when the terminal is too small to show the ncurses pinentry dialog as Normal priority.

Thanks for the report. Frankly the curses pinentries are not that widely tested.

Feb 23 2021, 5:02 PM · gnupg (gpg22), gpgagent, pinentry, Bug Report

Feb 21 2021

wltjr added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.
Feb 21 2021, 5:06 AM · pinentry, Bug Report

Feb 19 2021

ikloecker added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

Well, it's a (hard) requirement unless you explicitly disable efl, i.e. ./configure (without --disable-efl) fails with an error if elementary or ecore-x is not found.

Feb 19 2021, 2:54 PM · pinentry, Bug Report
dkg added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

I don't think the patch made elementary and ecore-x dev headers an absolute hard requirement; in particular, ./configure --disable-efl works fine to build pinentry without having these headers installed.

Feb 19 2021, 2:22 PM · pinentry, Bug Report
ikloecker added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

The following patch makes the efl requirements optional unless pinentry-efl is explicitly enabled:

diff --git a/configure.ac b/configure.ac
index bc67c14..ce170c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -423,7 +423,24 @@ AC_ARG_ENABLE(pinentry-efl,
             pinentry_efl=$enableval, pinentry_efl=maybe)
Feb 19 2021, 12:42 PM · pinentry, Bug Report
ikloecker added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

rP19a18ba5fee0 makes elementary and ecore-x hard requirements for pinentry. I don't think that's intended.

Feb 19 2021, 12:05 PM · pinentry, Bug Report

Feb 18 2021

dkg closed T5308: pkg-config misuse in efl sections of pinentry autoconf tooling as Resolved.

Thanks for the verification, @wltjr. I've pushed 19a18ba5fee049aac87b5114763095aaeb42430f to the master branch for future releases.

Feb 18 2021, 3:30 PM · pinentry, Bug Report
werner triaged T5307: pinentry-qt unilaterally enables rpath, even when configured with `--disable-rpath` as Low priority.
Feb 18 2021, 8:49 AM · qt, pinentry, Bug Report
werner triaged T5308: pkg-config misuse in efl sections of pinentry autoconf tooling as Normal priority.
Feb 18 2021, 8:49 AM · pinentry, Bug Report
wltjr added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

Btw, ecore-x was also needed, so that should remain. Just to be clear, the final version should be

PKG_CHECK_MODULES(EFL,[elementary >= 1.18,ecore-x])

Give or take the >= vs >.

Feb 18 2021, 4:46 AM · pinentry, Bug Report
wltjr added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

@dkg it was the 2nd one, the EFL vs efl. That worked fine after uppercasing it! The >= may not be necessary, but might as well. I am on a much newer EFL, 1.25.1, so not really able to test that part of it. I should be running one of the latest autotools,

[ebuild   R    ] sys-devel/automake-1.16.3-r1:1.16::gentoo  USE="-test" 0 KiB
[ebuild   R    ] sys-devel/autoconf-2.69-r5:2.69::gentoo  USE="-emacs" 1,438 KiB
[ebuild   R    ] sys-devel/libtool-2.4.6-r6:2::gentoo  USE="-vanilla" 951 KiB
Feb 18 2021, 4:42 AM · pinentry, Bug Report
dkg added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

hm, actually, maybe the efl should be EFL in order to produce and substitute the EFL_CFLAGS and EFL_LIBS variables.

Feb 18 2021, 2:22 AM · pinentry, Bug Report
dkg added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

@wltjr maybe it needs ecore-x as well as elementary > 1.18 in the PKG_CHECK_MODULES line? oh, and looks like i screwed up and used > where i should have used >= sorry! fixing those would make the PKG_CHECK_MODULES line be:

Feb 18 2021, 2:18 AM · pinentry, Bug Report
wltjr added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

Looks like its missing an include

x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I..  -pthread -I/usr/include/libsecret-1 -I/usr/include/gio-unix-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/lib64/libffi/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include    -I/usr/include/ncursesw -I../secmem -I../pinentry -Wall  -O2 -pipe -march=amdfam10 -mcx16 -msahf -mabm -mlzcnt -Wall -Wno-pointer-sign -Wpointer-arith -c -o pinentry-efl.o pinentry-efl.c
pinentry-efl.c:32:10: fatal error: Elementary.h: No such file or directory
   32 | #include <Elementary.h>
      |          ^~~~~~~~~~~~~~
compilation terminated.

Feb 18 2021, 1:00 AM · pinentry, Bug Report
wltjr added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

@dkg for sure, I will test out the patch ASAP. Thanks for the ping.

Feb 18 2021, 12:54 AM · pinentry, Bug Report

Feb 17 2021

dkg added a comment to T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

fwiw, i think a patch like this ought to work with reasonably-modern versions of autotools:

Feb 17 2021, 9:22 PM · pinentry, Bug Report
dkg updated subscribers of T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.

@wltjr maybe you could take a look at this?

Feb 17 2021, 8:52 PM · pinentry, Bug Report
dkg renamed T5308: pkg-config misuse in efl sections of pinentry autoconf tooling from po to pkg-config misuse in efl sections of pinentry autoconf tooling.
Feb 17 2021, 8:44 PM · pinentry, Bug Report
dkg created T5308: pkg-config misuse in efl sections of pinentry autoconf tooling.
Feb 17 2021, 8:43 PM · pinentry, Bug Report
dkg created T5307: pinentry-qt unilaterally enables rpath, even when configured with `--disable-rpath`.
Feb 17 2021, 8:22 PM · qt, pinentry, Bug Report

Jan 30 2021

werner triaged T5281: gpg-agent / pinentry: allow to pause/mute passphrase requests for a while as Normal priority.
Jan 30 2021, 12:10 PM · gpgagent, pinentry, Feature Request

Jan 27 2021

gouttegd closed T5262: pinentry qt4 fails to compile in pinentry 1.1.1 as Resolved.

Thanks @aheinecke for fixing my fix with 2859edd! Closing here.

Jan 27 2021, 12:37 AM · pinentry, Bug Report

Jan 26 2021

aheinecke abandoned D521: qt: Fix build against Qt4..

Modified and commited with: rev. 2859eddfb0c935d3f9eb9ccc1b42c121621123e9 I'm not sure if phabricator automatically does it when I mention the differential as GnuPG-Bug-Id

Jan 26 2021, 11:34 AM · pinentry
aheinecke commandeered D521: qt: Fix build against Qt4..

Thanks for noticing, I did not have Qt4 on my radar when writing this. The delayed raise with the timer might be only necessary on windows, on linux we don't have reports that just doing an activateWindow and raise does not work. So this is mostly for windows and there the Qt4 pinentry is not relevant.

Jan 26 2021, 11:11 AM · pinentry

Jan 25 2021

werner added a comment to T4659: Release Pinentry-1.1.1.
  • Please see T5262 if you want to build with Qt4.
Jan 25 2021, 10:43 AM · pinentry, Release Info

Jan 24 2021

gouttegd updated subscribers of T5262: pinentry qt4 fails to compile in pinentry 1.1.1.

There’s a patch to restore support for Qt4: D521.

Jan 24 2021, 12:49 AM · pinentry, Bug Report
gouttegd created D521: qt: Fix build against Qt4..
Jan 24 2021, 12:43 AM · pinentry

Jan 23 2021

gouttegd closed T4659: Release Pinentry-1.1.1 as Resolved.
Jan 23 2021, 11:22 PM · pinentry, Release Info
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T3428: pinentry-curses should be able to avoid showing *s when user enters passphrase, as Resolved.
Jan 23 2021, 11:22 PM · pinentry, Feature Request
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4263: Pinentry does not support --disable-doc configure option, as Resolved.
Jan 23 2021, 11:22 PM · pinentry, Bug Report
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4337: pinentry-fltk: Formatstring handling, as Resolved.
Jan 23 2021, 11:22 PM · patch, pinentry, Bug Report
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4336: pinentry-fltk: Keyboard shortcuts are not recognized, as Resolved.
Jan 23 2021, 11:22 PM · pinentry, patch, Bug Report
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T3949: pinentry looks for gpg-error-config and libassuan-config in ${SYSROOT}/bin but they are in ${SYSROOT}/usr/bin, as Resolved.
Jan 23 2021, 11:22 PM · Cross-Compiler, pinentry, Bug Report
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4598: curses: dialog broken with wide characters, as Resolved.
Jan 23 2021, 11:22 PM · pinentry
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4583: pinentry-tty should accept backspace, delete, and ctrl-U, as Resolved.
Jan 23 2021, 11:22 PM · pinentry, Restricted Project, Bug Report
gouttegd closed T4659: Release Pinentry-1.1.1, a subtask of T4658: Fix a dangling pointer in pinentry's qt/main.cpp, as Resolved.
Jan 23 2021, 11:22 PM · pinentry, Bug Report
gouttegd claimed T5262: pinentry qt4 fails to compile in pinentry 1.1.1.

My bad, prior to the release I tested only against Qt5.

Jan 23 2021, 10:26 PM · pinentry, Bug Report

Jan 22 2021

jpalus created T5262: pinentry qt4 fails to compile in pinentry 1.1.1.
Jan 22 2021, 9:10 PM · pinentry, Bug Report

Jan 19 2021

gouttegd added a comment to T4659: Release Pinentry-1.1.1.

Looking at the backlog of pinentry-related issues, I don’t think that would warrant delaying further the release of pinentry-1.1.1, especially given that the last release was 3 years ago already. Remaining issues (most of them being stalled anyway) or feature requests can be postponed for a future pinentry-1.2.0.

Jan 19 2021, 8:25 PM · pinentry, Release Info
gouttegd closed T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h as Resolved.

The fix will be part of the upcoming pinentry-1.1.1.

Jan 19 2021, 7:53 PM · pinentry, Bug Report
gouttegd closed T4583: pinentry-tty should accept backspace, delete, and ctrl-U as Resolved.

@gniibe I assume this issue has been fixed by the same fix as for T4585 and can be closed as well. Feel free to re-open if I am wrong.

Jan 19 2021, 7:48 PM · pinentry, Restricted Project, Bug Report
gouttegd closed T4583: pinentry-tty should accept backspace, delete, and ctrl-U, a subtask of T4771: pinentry-tty/pinentry-curses interact a user as background process, as Resolved.
Jan 19 2021, 7:48 PM · pinentry
gniibe closed T4585: pinentry-tty mishandles ctrl-C, a subtask of T4771: pinentry-tty/pinentry-curses interact a user as background process, as Resolved.
Jan 19 2021, 3:01 AM · pinentry

Jan 18 2021

gouttegd closed T3428: pinentry-curses should be able to avoid showing *s when user enters passphrase as Resolved.

No disagreement after more than a year, I think it’s fair to say that either everybody is fine with that feature being only present in the -qt, -tqt, -gtk, and -curses pinentries, or that nobody cares. :) Closing now, will be part of the upcoming pinentry-1.1.1.

Jan 18 2021, 2:04 PM · pinentry, Feature Request
werner closed T5207: Pinentry won't show up as Resolved.
Jan 18 2021, 12:26 PM · No Response, symmetric, pinentry, gnupg (gpg22)
werner reassigned T4659: Release Pinentry-1.1.1 from werner to gouttegd.
Jan 18 2021, 10:55 AM · pinentry, Release Info

Jan 12 2021

werner raised the priority of T4659: Release Pinentry-1.1.1 from Normal to High.
Jan 12 2021, 9:08 AM · pinentry, Release Info

Jan 5 2021

werner raised the priority of T5207: Pinentry won't show up from Normal to Needs Triage.
Jan 5 2021, 9:09 AM · No Response, symmetric, pinentry, gnupg (gpg22)
werner triaged T5207: Pinentry won't show up as Normal priority.
Jan 5 2021, 9:09 AM · No Response, symmetric, pinentry, gnupg (gpg22)

Nov 30 2020

aheinecke created T5160: Pinentry: Improved generate support.
Nov 30 2020, 10:57 AM · gpgagent, pinentry

Nov 25 2020

aheinecke closed T4123: Pinentry-qt does not always become active foreground window (especially when requesting pin for authentication) as Resolved.

Will be fixed with 3.1.14

Nov 25 2020, 12:10 PM · pinentry, Bug Report, gpg4win

Sep 9 2020

aheinecke added a comment to T4123: Pinentry-qt does not always become active foreground window (especially when requesting pin for authentication).

There are two problems that might be mixed in here:
What I noticed sometimes is that pinentry-qt properly becomes the ForegroundWindow but the input focus is not set on the line, even though an active cursor is shown in the line.
This might be a pinentry-qt specific issue and I look into that.

Sep 9 2020, 2:17 PM · pinentry, Bug Report, gpg4win

Aug 26 2020

doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

I am always glad to fix such bugs before a release (I am about to prepare 2.2.22).

Aug 26 2020, 4:12 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

I am always glad to fix such bugs before a release (I am about to prepare 2.2.22).

Aug 26 2020, 3:48 PM · Wayland, pinentry
doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

It worked! You were right!

Aug 26 2020, 3:31 PM · Wayland, pinentry
doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

Thank you for your prompt help. It's much appreciated.

Aug 26 2020, 3:20 PM · Wayland, pinentry
werner merged task T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE into T4137: IPC syntax error when `gpg` starts `gpg-agent` without `$TERM` variable.
Aug 26 2020, 3:19 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

rG4c8d5eb0bdd3: agent: Allow TERM="".

Aug 26 2020, 3:19 PM · Wayland, pinentry
doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

I see. Thank you @werner . For clarity could you please link the patch that was not backported to 2.2.?

Aug 26 2020, 3:17 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

Mails crossed ;-)

Aug 26 2020, 3:16 PM · Wayland, pinentry
doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

But @werner what's the value $TERM *supposed* to have? When gpg is invoked straight by Gnome? I can run the command sh -c 'env | grep TERM > ~/gnome-term.env' in Gnome's "Run Command: interface and then the file ~/gnome-term.env says TERM is set to nothing (It is set, but the contents is a "" string).

Aug 26 2020, 3:13 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

Ah wait. This has been fixed in master a year ago but was not backported to 2.2; see T4137. I'll add it to the forthcoming 2.2.22. Thanks for the report.

Aug 26 2020, 3:11 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

The warning above is harmless. Both strings are actually the same but stem from different versions of the autotools helper scripts

Aug 26 2020, 3:05 PM · Wayland, pinentry
doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

Unfortunately I've had some trouble compiling the latest git version of GnuPG for NixOS - I got this warning which turned out to be a blocker:

Aug 26 2020, 2:44 PM · Wayland, pinentry
werner added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

Without really looking at your report: May it be that this is because Pinentry does not get the WAYLAND_DISPLAY variable as reported in T5016? This will be fixed in 2.2.22 which I hope to release this week.

Aug 26 2020, 9:40 AM · Wayland, pinentry

Aug 25 2020

doronbehar added a comment to T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE.

I take some of my words back - using or not using MOZ_ENABLE_WAYLAND=1 doesn't make a difference eventually - If Firefox is launched by Gnome and not gnome-terminal, pinentry fails to launch with and without MOZ_ENABLE_WAYLAND.

Aug 25 2020, 6:21 PM · Wayland, pinentry
doronbehar created T5036: pinentry won't launch when gpg is invoked by Firefox when Firefox runs with native wayland support in a wayland DE in the S1 Public space.
Aug 25 2020, 5:41 PM · Wayland, pinentry

Jun 15 2020

bernhard added a comment to T4974: timeout for pinentry too short for key-generation, losing previous entries.

To explain the use case, I've started coming up with a good passphrase and this took a bit of time with a pencil and paper in front of me. When I wanted to type it in, it was too late. Thus I guess that some people will look up good rules of passphrases or at least make sure they can remember the one they are typing in.

Jun 15 2020, 11:34 AM · pinentry

Jun 13 2020

werner triaged T4974: timeout for pinentry too short for key-generation, losing previous entries as Wishlist priority.

5 or 10 minutes are not reasonable in this case. Users are expected to attend the key generation. Your idea of having a countdown after, say 30 seconds, makes sense and should be easy to implement in the pinentries.

Jun 13 2020, 3:05 PM · pinentry

May 19 2020

aheinecke created T4950: pinentry: Add warning when capslock is on.
May 19 2020, 9:14 AM · Restricted Project, Restricted Project, pinentry

May 8 2020

bernhard added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

@aheinecke thanks for commenting.

May 8 2020, 2:06 PM · pinentry, Bug Report
aheinecke renamed T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals from pinentry doesn't allow to set no password to pinentry: pinentry-curses doesn't allow to set no password on small terminals.
May 8 2020, 12:32 PM · pinentry, Bug Report
aheinecke assigned T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals to werner.

I can reproduce this.

May 8 2020, 12:32 PM · pinentry, Bug Report
aheinecke changed the status of T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h from Open to Testing.

I keep it open as testing so that we keep it in mind for a release.

May 8 2020, 12:07 PM · pinentry, Bug Report
aheinecke added a comment to T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h.

There was a patch for this by david faure which added an
#undef ttytype after including curses.h

May 8 2020, 12:00 PM · pinentry, Bug Report

Apr 30 2020

ludwig added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

I debugged some more.

Apr 30 2020, 12:57 PM · pinentry, Bug Report

Apr 29 2020

ludwig added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

It is the pinentry-curses, which is needed to reproduce the problem.
Using tab and Return to navigate the dialog.
After pressing ok, the password question dialog reappears. I tried 20 times to press ok, every time the password question dialog reappeared.
If I press cancel, the process aborts. So I'm sure, I hit the right button.

Apr 29 2020, 11:34 AM · pinentry, Bug Report

Apr 27 2020

ludwig added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

And yes: If I install pinentry-gtk2 and follow the steps, it works as excepted.

Apr 27 2020, 3:18 PM · pinentry, Bug Report
ludwig added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

Perhaps I explain the steps, I'm doing.
I'm on a minimal debian buster instance.

  1. gpg2 --full-gen-key
  2. Insert stuff.
  3. See Dialog:

Real name: Test1 Tester
Email address: test1@example.com
Comment: no pw
You selected this USER-ID:

"Test1 Tester (no pw) <test1@example.com>"
Apr 27 2020, 3:07 PM · pinentry, Bug Report

Apr 26 2020

Knochenhangen added a comment to T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h.

Ok. Renamed ist "ttytype_l" (l for local) and found the button to upload a file.
Hope it helps.

Apr 26 2020, 9:31 PM · pinentry, Bug Report
werner added a comment to T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h.

Using a double underscore in a symbol should be avoided because such symbols are reserved for system use.
(To include a diff inline, please intend it by two spaces so that it is not not considered as marked up text.)

Apr 26 2020, 11:42 AM · pinentry, Bug Report

Apr 25 2020

Knochenhangen created T4927: pinentry doesn't compile: declaration of ttytype conflicts with curses.h.
Apr 25 2020, 4:37 PM · pinentry, Bug Report

Apr 23 2020

werner added a comment to T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.

I just tried and Pinentry ask me whether I really want to use an unprotected key. Take care that you hit the right button.

Apr 23 2020, 2:52 PM · pinentry, Bug Report

Apr 22 2020

ludwig created T4924: pinentry: pinentry-curses doesn't allow to set no password or weak passwords on 80 char width and smaller terminals.
Apr 22 2020, 2:56 PM · pinentry, Bug Report

Mar 12 2020

gniibe added projects to T4583: pinentry-tty should accept backspace, delete, and ctrl-U: Restricted Project, pinentry.
Mar 12 2020, 6:39 AM · pinentry, Restricted Project, Bug Report

Feb 17 2020

werner triaged T4848: Usage of git in configure.ac for pinentry/gpa finds incorrect repositories as Normal priority.

Yeah, this can be done.

Feb 17 2020, 9:19 AM · pinentry, gpa, toolchain, Bug Report