Page MenuHome GnuPG
Feed All Stories

Apr 22 2024

alexk added a comment to T7091: Kleopatra: Simple copy key to card.

With Ingo's suggestions it could look like this.

Apr 22 2024, 9:41 AM · gpd5x, kleopatra
gniibe triaged T7097: Support a key on smartcard for PQC as Wishlist priority.
Apr 22 2024, 8:12 AM · gnupg26, gpgagent, Feature Request
gniibe closed T5436: gpg-agent 2.3.1: PIN caching not working for decrypt operations as Resolved.

Please continue on T7041. This ticket is going to be closed (as the problem described was fixed already).

Apr 22 2024, 8:09 AM · gnupg24, yubikey, Bug Report
werner closed T7093: c23 boolean issue in GPG asschk.c as Resolved.

Okay, fix pushed to master, 2.4, and 2.2. Thanks.

Apr 22 2024, 8:07 AM · gnupg, Bug Report
gniibe changed the status of T7058: KDF-DO is not properly implemented from Open to Testing.

Applied to 2.4 branch.

Apr 22 2024, 8:07 AM · scd, gnupg, Bug Report
werner committed rGf119444e6442: tests: Avoid new C23 keyword true. (authored by werner).
tests: Avoid new C23 keyword true.
Apr 22 2024, 8:06 AM
werner committed rG7728a179e0b7: tests: Avoid new C23 keyword true. (authored by werner).
tests: Avoid new C23 keyword true.
Apr 22 2024, 8:06 AM
werner committed rG6228bb001257: tests: Avoid new C23 keyword true. (authored by werner).
tests: Avoid new C23 keyword true.
Apr 22 2024, 8:06 AM
gniibe changed the status of T7071: gpg: Support of No CRC in ASCII armor from Open to Testing.

Applied to 2.4 branch.

Apr 22 2024, 8:05 AM · gnupg, Bug Report
gniibe added a comment to T7085: libgcrypt: New functions to support waiting time.

Here is current version:

diff --git a/src/misc.c b/src/misc.c
index 4db2d9a4..bf50b00b 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -577,3 +577,61 @@ _gcry_divide_by_zero (void)
     gpg_err_set_errno (EDOM);
     _gcry_fatal_error (gpg_err_code_from_errno (errno), "divide by zero");
 }
+
+#ifdef HAVE_CLOCK_GETTIME
+#include <time.h>
+# if defined(CLOCK_THREAD_CPUTIME_ID) && defined(CLOCK_TAI)
+struct gcry_timedwait
+{
+  clockid_t id;
+  struct timespec ts;
+};
+
+typedef struct gcry_timedwait *gcry_timedwait_t;
+
+gcry_err_code_t
+_gcry_timedwait_init (gcry_timedwait_t tw, unsigned int flags)
+{
+  /* Possibly, it would be good to be able to select the wall clock.
+   * For now, it's CPU time by the thread.  */
+  if (flags != 0)
+    return GPG_ERR_INV_ARG;
+
+  tw->id = CLOCK_THREAD_CPUTIME_ID;
+  if (clock_gettime (tw->id, &tw->ts) < 0)
+    return gpg_err_code_from_syserror ();
+
+  return 0;
+}
+
+gcry_err_code_t
+_gcry_timedwait_finish (gcry_timedwait_t tw, struct timespec ts_r)
+{
+  struct timespec ts;
+  u32 negative;
+
+  if (clock_gettime (tw->id, &ts) < 0)
+    return gpg_err_code_from_syserror ();
+
+  ts.tv_sec -= tw->ts.tv_sec;
+  ts.tv_nsec -= tw->ts.tv_nsec;
+  negative = ((u32)ts.tv_nsec) >> 31;
+  ts.tv_sec -= negative;
+  ts.tv_nsec += (1000000000 * negative);
+
+  ts_r.tv_sec -= ts.tv_sec;
+  ts_r.tv_nsec -= ts.tv_nsec;
+  negative = ((u32)ts_r.tv_nsec) >> 31;
+  ts_r.tv_sec -= negative;
+  ts_r.tv_nsec += (1000000000 * negative);
+
+  if (ts_r.tv_sec < 0)
+    return GPG_ERR_TIME_CONFLICT;
+
+  if (clock_nanosleep (CLOCK_TAI, 0, &ts_r, &ts_r))
+    return gpg_err_code_from_syserror ();
+
+  return 0;
+}
+# endif
+#endif
Apr 22 2024, 8:01 AM · libgcrypt
gniibe committed rC9c65260f915f: cipher:kem:ecc: Support brainpoolP256r1 and brainpoolP384r1. (authored by gniibe).
cipher:kem:ecc: Support brainpoolP256r1 and brainpoolP384r1.
Apr 22 2024, 7:45 AM
l10n daemon script <scripty@kde.org> committed rMTP4f8524f0f6fe: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 5:53 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO978f363092fd: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 5:52 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA549fa989a268: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 5:51 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA9ad45b2df294: SVN_SILENT made messages (.desktop file) - always resolve ours (authored by l10n daemon script <scripty@kde.org>).
SVN_SILENT made messages (.desktop file) - always resolve ours
Apr 22 2024, 5:41 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA96e8dab31002: GIT_SILENT made messages (after extraction) (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT made messages (after extraction)
Apr 22 2024, 5:06 AM
l10n daemon script <scripty@kde.org> committed rMTP678ef2f6ff05: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 3:33 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEOf6ae2c7352a2: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 3:33 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAc6bd1197552d: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 22 2024, 3:31 AM

Apr 21 2024

Albert Astals Cid <aacid@kde.org> committed rKLEOPATRA1447033987d6: GIT_SILENT Upgrade release service version to 24.07.70. (authored by Albert Astals Cid <aacid@kde.org>).
GIT_SILENT Upgrade release service version to 24.07.70.
Apr 21 2024, 12:22 PM
Albert Astals Cid <aacid@kde.org> committed rKLEOPATRA2744758b9f3a: GIT_SILENT Upgrade release service version to 24.04.80. (authored by Albert Astals Cid <aacid@kde.org>).
GIT_SILENT Upgrade release service version to 24.04.80.
Apr 21 2024, 11:33 AM
l10n daemon script <scripty@kde.org> committed rMTP427ff885f186: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEOa3c035f05f76: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 5:17 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA6cadb984d48e: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 5:16 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEOa77176bcbe6e: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 3:27 AM
l10n daemon script <scripty@kde.org> committed rMTP8529a90f3106: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 3:26 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAae8c3c00032e: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 21 2024, 3:25 AM

Apr 20 2024

alexk updated the task description for T7096: Kleopatra: Show origin of user-ID in details window.
Apr 20 2024, 2:14 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
alexk triaged T7096: Kleopatra: Show origin of user-ID in details window as Normal priority.
Apr 20 2024, 2:08 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
alexk triaged T7095: Kleopatra: show designated revoker in details window as Normal priority.
Apr 20 2024, 2:03 PM · Restricted Project, kleopatra
alexk updated the task description for T7094: Kleopatra: Window handling.
Apr 20 2024, 1:58 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
alexk triaged T7094: Kleopatra: Window handling as Normal priority.
Apr 20 2024, 1:57 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
jeffcliff updated jeffcliff.
Apr 20 2024, 5:59 AM
jeffcliff updated jeffcliff.
Apr 20 2024, 5:58 AM
jeffcliff renamed T7093: c23 boolean issue in GPG asschk.c from c23 boolean issue in asschk.c to c23 boolean issue in GPG asschk.c.
Apr 20 2024, 5:56 AM · gnupg, Bug Report
jeffcliff added a comment to T7093: c23 boolean issue in GPG asschk.c.
--- gnupg-2.4.5/tests/asschk.c	2023-04-04 02:28:39.000000000 -0600
+++ gnupg-2.4.5-c23/tests/asschk.c	2024-04-19 21:21:36.460724329 -0600
@@ -656,13 +656,13 @@
 static int
 eval_boolean (const char *cond)
 {
-  int true = 1;
+  int tr = 1;
Apr 20 2024, 5:50 AM · gnupg, Bug Report
jeffcliff created T7093: c23 boolean issue in GPG asschk.c.
Apr 20 2024, 5:38 AM · gnupg, Bug Report
l10n daemon script <scripty@kde.org> committed rMTPb6418b13406e: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 5:19 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO1b36c779fc41: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 5:19 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA6ead784c8c13: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 5:19 AM
l10n daemon script <scripty@kde.org> committed rMTPe034709c6f1d: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 3:28 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEOee08cce77c7d: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 3:26 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA4eec79adb4be: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 20 2024, 3:26 AM

Apr 19 2024

werner committed rE6ab3e9ac43ba: logging: Indent continuation lines of log_printhex. (authored by werner).
logging: Indent continuation lines of log_printhex.
Apr 19 2024, 3:39 PM
ikloecker added a comment to T7019: Kleopatra: change "certificate detailed view" to tabbed interface instead of sub-windows.

Show Fingerprint instead of Key-ID of certifications (change the title correspondingly)

Apr 19 2024, 2:20 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
TobiasFella committed rLIBKLEOfc86f8f2db48: Show fingerprint instead of key id in web of trust widget (authored by TobiasFella).
Show fingerprint instead of key id in web of trust widget
Apr 19 2024, 1:18 PM
TobiasFella committed rKLEOPATRA23d641930219: UserIDsWidget: Add origin column (authored by TobiasFella).
UserIDsWidget: Add origin column
Apr 19 2024, 12:45 PM
TobiasFella committed rKLEOPATRAec10b0fd57bb: CertificateDetailsWidget: Make button spacing consistent (authored by TobiasFella).
CertificateDetailsWidget: Make button spacing consistent
Apr 19 2024, 12:20 PM
gniibe committed rC47f2cb8f6f35: cipher:ecc: Return the result in SEC1 point format for Weierstrass. (authored by gniibe).
cipher:ecc: Return the result in SEC1 point format for Weierstrass.
Apr 19 2024, 10:35 AM
gniibe committed rCb1da8247dcbc: cipher:ecc: Add _gcry_ecc_curve_mul_point function with curve name. (authored by gniibe).
cipher:ecc: Add _gcry_ecc_curve_mul_point function with curve name.
Apr 19 2024, 7:59 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO7073b50599de: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 19 2024, 5:06 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA038156e9838d: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 19 2024, 5:05 AM
l10n daemon script <scripty@kde.org> committed rMTPc5ac529c5d61: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 19 2024, 3:29 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO5c1014e841d2: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 19 2024, 3:28 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA86d1d91d1ede: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 19 2024, 3:28 AM
gniibe committed rC72b1b8d447fb: cipher:kem: Rename Classic McEliece API constants. (authored by gniibe).
cipher:kem: Rename Classic McEliece API constants.
Apr 19 2024, 3:21 AM

Apr 18 2024

ikloecker added a comment to T7019: Kleopatra: change "certificate detailed view" to tabbed interface instead of sub-windows.

I don't like blowing up a task with loads of unrelated additional wishes after the original request was fulfilled. At most the first request can be considered part of the original request. The other requests should be handled in multiple separate tasks.

Apr 18 2024, 9:23 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
alexk added a comment to T7019: Kleopatra: change "certificate detailed view" to tabbed interface instead of sub-windows.

Optimization requests:

Apr 18 2024, 5:45 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra
alexk added a comment to T7091: Kleopatra: Simple copy key to card.
Apr 18 2024, 5:39 PM · gpd5x, kleopatra
ikloecker added a comment to T7091: Kleopatra: Simple copy key to card.

The check happens whenever the user selects or deselects one (or more) certificates. All actions that require conditions not met by the selected certificates are disabled. Some conditions are too complex/slow/special to check, e.g. the check if an empty smart card is inserted should happen when the user triggered the action.

Apr 18 2024, 3:53 PM · gpd5x, kleopatra
alexk added a comment to T7091: Kleopatra: Simple copy key to card.

The action shouldn't be enabled for keys not meeting the requirements.

This sounds good.
Will this checks be done on opening the context menu for a private key?

Apr 18 2024, 2:48 PM · gpd5x, kleopatra
werner committed rGba3c873934c9: gpg: Prepare Kyber encryption code for more variants. (authored by werner).
gpg: Prepare Kyber encryption code for more variants.
Apr 18 2024, 2:39 PM
TobiasFella committed rKLEOPATRA0e15d3e52661: Improvements (authored by TobiasFella).
Improvements
Apr 18 2024, 1:45 PM
CarlSchwan committed rOJ5d040a560317: Install targets (authored by CarlSchwan).
Install targets
Apr 18 2024, 1:31 PM
CarlSchwan committed rOJ3f3df871d5b4: Handle error in attachment view (authored by CarlSchwan).
Handle error in attachment view
Apr 18 2024, 1:31 PM
CarlSchwan committed rOJ3fb123edc9e4: Run clang format (authored by CarlSchwan).
Run clang format
Apr 18 2024, 1:31 PM
CarlSchwan committed rOJ411116627c82: Use consexpr for static string array (authored by CarlSchwan).
Use consexpr for static string array
Apr 18 2024, 1:31 PM
TobiasFella committed rKLEOPATRA76d874c487b7: Automatically export certificate after revocation and ask the user to publish it (authored by TobiasFella).
Automatically export certificate after revocation and ask the user to publish it
Apr 18 2024, 11:03 AM
TobiasFella committed rKLEOPATRA33f4faa8625c: Don't show disabled certificates in signencryptwidget (authored by TobiasFella).
Don't show disabled certificates in signencryptwidget
Apr 18 2024, 9:41 AM
TobiasFella committed rKLEOPATRA568cca2bcce7: Don't show disabled certificates in signencryptwidget (authored by TobiasFella).
Don't show disabled certificates in signencryptwidget
Apr 18 2024, 9:36 AM
aheinecke committed rKLEOPATRAc9676f0c136f: Bump version of kleopatra.rc (authored by aheinecke).
Bump version of kleopatra.rc
Apr 18 2024, 9:36 AM
aheinecke committed rKLEOPATRA2173f1a5bebf: Bump kxmlgui rc version (authored by aheinecke).
Bump kxmlgui rc version
Apr 18 2024, 9:33 AM
CarlSchwan committed rOJ9be07be382a3: Explicitely link to QtWebsockets (authored by CarlSchwan).
Explicitely link to QtWebsockets
Apr 18 2024, 9:29 AM
TobiasFella committed rKLEOPATRAee1537e7a880: Show certificate status in CertificateDetailsDialog (authored by TobiasFella).
Show certificate status in CertificateDetailsDialog
Apr 18 2024, 9:29 AM
CarlSchwan committed rOJf91e8a776c83: Cleanup mailId handling in composerviewbase (authored by CarlSchwan).
Cleanup mailId handling in composerviewbase
Apr 18 2024, 9:26 AM
CarlSchwan committed rOJ7b57e52c91b4: Remove unused charset variable from attachmentcontroller (authored by CarlSchwan).
Remove unused charset variable from attachmentcontroller
Apr 18 2024, 9:26 AM
CarlSchwan committed rOJdb906f3e2ee1: Don't include whole QtConcurrent module (authored by CarlSchwan).
Don't include whole QtConcurrent module
Apr 18 2024, 9:26 AM
CarlSchwan committed rOJ08c965b38bcc: Avoid heap allocation when calculating size with encoding (authored by CarlSchwan).
Avoid heap allocation when calculating size with encoding
Apr 18 2024, 9:26 AM
mlaurent committed rKLEOPATRA54d88fdd404f: GIT_SILENT: prepare 24.05 beta (authored by mlaurent).
GIT_SILENT: prepare 24.05 beta
Apr 18 2024, 7:13 AM
mlaurent committed rMTP11bbe63cbe31: GIT_SILENT: prepare 24.05 beta (authored by mlaurent).
GIT_SILENT: prepare 24.05 beta
Apr 18 2024, 7:13 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA3319bf23c0a7: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 18 2024, 4:52 AM
gniibe committed rC9a552b80d6c4: cipher: More clean up for Classic McEliece implementation. (authored by gniibe).
cipher: More clean up for Classic McEliece implementation.
Apr 18 2024, 4:08 AM
gniibe committed rC6478203e77d1: cipher: Fix comments of Classic McEliece implementation. (authored by gniibe).
cipher: Fix comments of Classic McEliece implementation.
Apr 18 2024, 4:08 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAc27e4680a224: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Apr 18 2024, 3:20 AM

Apr 17 2024

ikloecker added a comment to T7091: Kleopatra: Simple copy key to card.

Regarding the requirements for a key: The action shouldn't be enabled for keys not meeting the requirements. (Just like most other actions are only enabled for a suitable selection of keys.) The info which keys are suitable belongs into the manual and not as wall of text into Kleopatra.

Apr 17 2024, 10:49 PM · gpd5x, kleopatra
ikloecker added a comment to T7091: Kleopatra: Simple copy key to card.

You forget that multiple OpenPGP smart cards might be plugged in. Although it's probably not likely that multiple empty cards are plugged in. (For comparison: The subkey action to move a key to a card allows the user to choose a suitable slot. I think it also offers non-empty slots, but I agree that for the "simple copy" it's better to offer only empty cards to prevent a disaster.)

Apr 17 2024, 10:43 PM · gpd5x, kleopatra
werner lowered the priority of T6853: GpgTar: S/MIME decryption fails with input/output error from High to Normal.

Nobody uses gpgtar for S/MIME

Apr 17 2024, 5:20 PM · gnupg, gpgtar, Restricted Project
ebo closed T6945: Addition to the Kleopatra Help Menu in VSD as Resolved.
Apr 17 2024, 4:29 PM · vsd32 (vsd-3.2.0), kleopatra
TobiasFella committed rKLEOPATRAc946372dd2c0: Don't show disabled certificates in signencryptwidget (authored by TobiasFella).
Don't show disabled certificates in signencryptwidget
Apr 17 2024, 4:14 PM
ebo moved T6945: Addition to the Kleopatra Help Menu in VSD from Backlog to vsd-3.2.0 on the vsd32 board.
Apr 17 2024, 4:04 PM · vsd32 (vsd-3.2.0), kleopatra
TobiasFella committed rKLEOPATRA579a73ee616e: Show certificate status in CertificateDetailsDialog (authored by TobiasFella).
Show certificate status in CertificateDetailsDialog
Apr 17 2024, 3:45 PM
TobiasFella committed rLIBKLEOd4f2dcec5b55: Fix showing keys as disabled / revoked / invalid (authored by TobiasFella).
Fix showing keys as disabled / revoked / invalid
Apr 17 2024, 2:54 PM
ebo added a comment to T7021: Kleopatra: restart gpg-agent after stopping it.

To clarify: this works for "Restart background processes" only, as was the aim of this ticket

Apr 17 2024, 2:53 PM · vsd32 (vsd-3.2.0), kleopatra, Restricted Project
alexk updated the task description for T7089: Kleopatra: show "disabled" status.
Apr 17 2024, 1:36 PM · vsd33, Feature Request, kleopatra, Restricted Project
alexk added a comment to T7089: Kleopatra: show "disabled" status.

Of course, it should be possible to toggle "disabled" in Kleopatra.
A (context) menu entry "disable certificate" (or "enable certificate") should be sufficient.

Apr 17 2024, 1:33 PM · vsd33, Feature Request, kleopatra, Restricted Project
werner added projects to T7089: Kleopatra: show "disabled" status: gpgme, Feature Request.
Apr 17 2024, 1:01 PM · vsd33, Feature Request, kleopatra, Restricted Project
werner added a comment to T7089: Kleopatra: show "disabled" status.

gpgme has a disabled flag (only set on the primary key) and taken from the --wwth-colon listing where it is the 'D' in the usage.

Apr 17 2024, 1:01 PM · vsd33, Feature Request, kleopatra, Restricted Project
werner committed rG2a0a706eb213: gpg: Mark disabled keys and add show-ownertrust list option. (authored by werner).
gpg: Mark disabled keys and add show-ownertrust list option.
Apr 17 2024, 12:57 PM
werner committed rG967678d9728c: gpg: New command --quick-set-ownertrust. (authored by werner).
gpg: New command --quick-set-ownertrust.
Apr 17 2024, 12:57 PM
TobiasFella claimed T6739: Allow "refresh key/signatures" from key's context menu (from key list).
Apr 17 2024, 12:40 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Feature Request