Page MenuHome GnuPG
Feed All Stories

Sep 18 2024

l10n daemon script <scripty@kde.org> committed rLIBKLEObd8914bb8c89: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 18 2024, 3:35 AM

Sep 17 2024

mlaurent committed rMTP855568f266f7: GIT_SILENT: it compiles fine without deprecated methods (kf) (authored by mlaurent).
GIT_SILENT: it compiles fine without deprecated methods (kf)
Sep 17 2024, 7:46 PM
mlaurent committed rLIBKLEO6c6e6e6c3c50: GIT_SILENT: it compiles fine without deprecated methods (kf) (authored by mlaurent).
GIT_SILENT: it compiles fine without deprecated methods (kf)
Sep 17 2024, 7:42 PM
TobiasFella committed rKLEOPATRA67eba7c7f7ea: Rework formatInputOutputLabel (authored by TobiasFella).
Rework formatInputOutputLabel
Sep 17 2024, 4:41 PM
TobiasFella committed rKLEOPATRAa43a9859163e: Improve DecryptVerifyFilesDialog (authored by TobiasFella).
Improve DecryptVerifyFilesDialog
Sep 17 2024, 4:41 PM
CarlSchwan committed rOJ4ed4657958cd: Port away from deprecated KMime APIs (authored by CarlSchwan).
Port away from deprecated KMime APIs
Sep 17 2024, 4:04 PM
ikloecker committed rM9747f189620a: doc,build: Look for yat2m in $prefix/bin (authored by ikloecker).
doc,build: Look for yat2m in $prefix/bin
Sep 17 2024, 3:10 PM
ikloecker committed rMe4b04ae15363: doc,build: Fix "make install" if yat2m isn't available (authored by ikloecker).
doc,build: Fix "make install" if yat2m isn't available
Sep 17 2024, 2:53 PM
werner committed rGd9fdc165e657: agent: Fix detection of the trustflag de-vs. (authored by werner).
agent: Fix detection of the trustflag de-vs.
Sep 17 2024, 1:40 PM
werner committed rG6ff13380a2e3: agent: Fix detection of the trustflag de-vs. (authored by werner).
agent: Fix detection of the trustflag de-vs.
Sep 17 2024, 1:39 PM
ikloecker committed rLIBKLEOd88b75a1e5c2: Don't make me wonder about operator precendence (authored by ikloecker).
Don't make me wonder about operator precendence
Sep 17 2024, 12:25 PM
CarlSchwan committed rOJ8a3a5b164d11: QHttpServer: Adapt to final API from Qt 6.8 (authored by CarlSchwan).
QHttpServer: Adapt to final API from Qt 6.8
Sep 17 2024, 11:12 AM
CarlSchwan committed rOJ87868fc176d5: Port away from KMime::Header::clear (authored by CarlSchwan).
Port away from KMime::Header::clear
Sep 17 2024, 11:12 AM
CarlSchwan committed rOJa352b7a44ef7: Remove pointless call to Subject::clear() (authored by CarlSchwan).
Remove pointless call to Subject::clear()
Sep 17 2024, 11:12 AM
CarlSchwan committed rOJad98d383cb63: Port to Kleo::Formatting::errorAsString for formatting errors (authored by CarlSchwan).
Port to Kleo::Formatting::errorAsString for formatting errors
Sep 17 2024, 11:12 AM
CarlSchwan committed rOJfc4448cdc2ae: Don't show key resolver confirmation dialog when not needed (authored by CarlSchwan).
Don't show key resolver confirmation dialog when not needed
Sep 17 2024, 11:12 AM
TobiasFella committed rLIBKLEO0a8c1ce5b52a: Only show compliance info for signatures that are valid (authored by TobiasFella).
Only show compliance info for signatures that are valid
Sep 17 2024, 10:46 AM
gniibe committed rC4876a1a45c25: tests:kyber: Add genkey and encap KAT tests. (authored by gniibe).
tests:kyber: Add genkey and encap KAT tests.
Sep 17 2024, 10:39 AM
gniibe committed rC38742196c04c: cipher:kyber: Add gcry_kem_genkey to support deterministic op. (authored by gniibe).
cipher:kyber: Add gcry_kem_genkey to support deterministic op.
Sep 17 2024, 10:39 AM
gniibe changed the status of T7277: libgcrypt: Adding Known Answer Tests for KEM from Open to Testing.

Pushed the change in: rC38742196c04c: cipher:kyber: Add gcry_kem_genkey to support deterministic op.
rC4876a1a45c25: tests:kyber: Add genkey and encap KAT tests.

Sep 17 2024, 9:39 AM · PQC, libgcrypt
gniibe added a comment to T7293: spawn API glitch.

Fixed GnuPG 2.4 in: rG730593affa91: common:w32: Don't expose unused functions.

Sep 17 2024, 9:11 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report
mlaurent committed rKLEOPATRA662fe6a2c72a: _version.h is not necessary now (authored by mlaurent).
_version.h is not necessary now
Sep 17 2024, 8:21 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO71014db575cc: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 17 2024, 5:19 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAdb7573a2f297: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 17 2024, 5:18 AM
gniibe added a comment to T7138: Windows (Semi-hosted environment): filename and network access.

For now, I'm using this to avoid failure of make check (invoking gpg-agent by gpg-connect-agent).

diff --git a/common/stringhelp.c b/common/stringhelp.c
index 9a2265258..6596c65cd 100644
--- a/common/stringhelp.c
+++ b/common/stringhelp.c
@@ -70,6 +70,22 @@ change_slashes (char *name)
 {
 #ifdef HAVE_DOSISH_SYSTEM
   char *p;
+  /* 0: don't know yet, 1: it's under wine, -1: no */
+  static int semihosted_by_wine;
+
+  /* Under wine, no change.  */
+  if (!semihosted_by_wine)
+    {
+      HMODULE hntdll = GetModuleHandle ("ntdll.dll");
+      if (hntdll
+          && GetProcAddress (hntdll, "wine_get_version"))
+        semihosted_by_wine = 1;
+      else
+        semihosted_by_wine = -1;
+    }
+
+  if (semihosted_by_wine > 0)
+    return name;
Sep 17 2024, 4:40 AM · gnupg, Bug Report
l10n daemon script <scripty@kde.org> committed rMTP62325540bcc6: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 17 2024, 3:34 AM
l10n daemon script <scripty@kde.org> committed rLIBKLEO57f8c54b8ed6: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 17 2024, 3:34 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA5b12812f6dd7: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 17 2024, 3:33 AM
gniibe updated the task description for T7293: spawn API glitch.
Sep 17 2024, 3:15 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report
gniibe committed rG730593affa91: common:w32: Don't expose unused functions. (authored by gniibe).
common:w32: Don't expose unused functions.
Sep 17 2024, 2:33 AM
gniibe set External Link to https://bugs.debian.org/1081807 on T7293: spawn API glitch.
Sep 17 2024, 2:26 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report
gniibe updated the task description for T7293: spawn API glitch.
Sep 17 2024, 2:23 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report
gniibe claimed T7293: spawn API glitch.

libgpg-error fix is done in: rEc2a713fe11e3: w32:spawn: Remove unused function get_max_fds.

Sep 17 2024, 2:22 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report
gniibe created T7293: spawn API glitch.
Sep 17 2024, 2:20 AM · gnupg22 (gnupg-2.2.45), gnupg24, gpgrt, Bug Report

Sep 16 2024

CarlSchwan committed rMTPb0ac90c75b7f: Fix test cases to use new strings provided by libkleo (authored by CarlSchwan).
Fix test cases to use new strings provided by libkleo
Sep 16 2024, 4:47 PM
CarlSchwan committed rMTP8d883d6ca065: Fix test cases to use new strings provided by libkleo (authored by CarlSchwan).
Fix test cases to use new strings provided by libkleo
Sep 16 2024, 4:40 PM
CarlSchwan committed rMTP2ec96538fb43: Fix test cases to use new strings provided by libkleo (authored by CarlSchwan).
Fix test cases to use new strings provided by libkleo
Sep 16 2024, 4:33 PM
werner triaged T7292: gpg-mail-tube: Add more features as Normal priority.
Sep 16 2024, 3:22 PM · Feature Request, gnupg26
TobiasFella committed rLIBKLEO5f36bcdec5a7: Minor code cleanup (authored by TobiasFella).
Minor code cleanup
Sep 16 2024, 2:53 PM
TobiasFella committed rLIBKLEOa2fa41a115e4: Minor code cleanup (authored by TobiasFella).
Minor code cleanup
Sep 16 2024, 2:52 PM
CarlSchwan committed rMTP8105ce2ded4b: Fix test cases to use new strings provided by libkleo (authored by CarlSchwan).
Fix test cases to use new strings provided by libkleo
Sep 16 2024, 2:31 PM
bjk committed rAdfa5e6532d7e: Fix FreeBSD to set the pid of assuan_peercred_t. (authored by bjk).
Fix FreeBSD to set the pid of assuan_peercred_t.
Sep 16 2024, 1:01 PM
ebo closed T6870: Kleopatra: Improve representation of signature verification result in case of multiple signatures as Resolved.

Closing this ticket as what remains open is practically a duplicate of T6869

Sep 16 2024, 12:42 PM · Restricted Project, kleopatra
ebo renamed T6869: Kleopatra: Improve verification results messages (esp. for invalid signature and multiple signatures) from Draft: Kleopatra: Improve verification results messages (especially in case of invalid signature) to Kleopatra: Improve verification results messages (esp. for invalid signature and multiple signatures).
Sep 16 2024, 12:38 PM · gpd5x, Restricted Project, kleopatra
ikloecker moved T7273: Kleopatra: Always show the verfication results of all signatures even if some signatures are bad from Backlog to WiP on the vsd33 board.

Backported the changes in Kleopatra for VSD 3.3.

Sep 16 2024, 11:50 AM · vsd33, Restricted Project, kleopatra
ikloecker committed rKLEOPATRA11a17c043e71: Enable checking of all data signatures (authored by ikloecker).
Enable checking of all data signatures
Sep 16 2024, 11:47 AM
CarlSchwan committed rLIBKLEO0451ad6d9f35: Add date to signature formatting (authored by CarlSchwan).
Add date to signature formatting
Sep 16 2024, 11:43 AM
ebo added a project to T7273: Kleopatra: Always show the verfication results of all signatures even if some signatures are bad: vsd33.
Sep 16 2024, 11:32 AM · vsd33, Restricted Project, kleopatra
CarlSchwan committed rLIBKLEO1fc8f822aa72: Add date to signature formatting (authored by CarlSchwan).
Add date to signature formatting
Sep 16 2024, 10:37 AM
gniibe committed rEc2a713fe11e3: w32:spawn: Remove unused function get_max_fds. (authored by gniibe).
w32:spawn: Remove unused function get_max_fds.
Sep 16 2024, 9:00 AM
gniibe claimed T7291: scdaemon randomly hangs when trying to access a token.
Sep 16 2024, 8:30 AM · scd
gniibe closed T7139: Windows: gnupg_exec_tool_stream with INEXTRA as Resolved.
Sep 16 2024, 8:14 AM · gnupg26, Bug Report
l10n daemon script <scripty@kde.org> committed rLIBKLEOeeeb88af99fa: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 16 2024, 3:48 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRA102c833e60a0: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 16 2024, 3:46 AM

Sep 15 2024

werner triaged T7285: Okular: Improvement of error messages regarding signatures as Normal priority.
Sep 15 2024, 10:24 AM · Restricted Project, okular
werner triaged T7291: scdaemon randomly hangs when trying to access a token as Unbreak Now! priority.

Actually we have similar problems with the 2.4 branch - in particular on Windows. We can quite easy reproduce this when using Kleopatra. Thus the working hypothesis is a locking problem because Kleopatra uses several threads and the order of actions recently changed.

Sep 15 2024, 10:22 AM · scd

Sep 14 2024

gouttegd created T7291: scdaemon randomly hangs when trying to access a token.
Sep 14 2024, 1:17 PM · scd
l10n daemon script <scripty@kde.org> committed rMTP7da35dda04bb: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 14 2024, 3:38 AM
l10n daemon script <scripty@kde.org> committed rKLEOPATRAeb1080b863db: GIT_SILENT Sync po/docbooks with svn (authored by l10n daemon script <scripty@kde.org>).
GIT_SILENT Sync po/docbooks with svn
Sep 14 2024, 3:37 AM

Sep 13 2024

werner committed rG54e06273c0dc: gpgsm: New option --assert-signer (authored by werner).
gpgsm: New option --assert-signer
Sep 13 2024, 4:36 PM
werner committed rD289953f10bde: web: Add man pages for 2.5. (authored by werner).
web: Add man pages for 2.5.
Sep 13 2024, 12:33 PM
mlaurent committed rMTP017ee22ea615: GIT_SILENT: prepare 6.2.2 (authored by mlaurent).
GIT_SILENT: prepare 6.2.2
Sep 13 2024, 8:46 AM
mlaurent committed rKLEOPATRA1da4f685825c: GIT_SILENT: prepare 6.2.2 (authored by mlaurent).
GIT_SILENT: prepare 6.2.2
Sep 13 2024, 8:44 AM
mlaurent committed rKLEOPATRAd0272fe40583: QLatin1String is same as QLatin1StringView, in qt7 QLatin1String will be removed (authored by mlaurent).
QLatin1String is same as QLatin1StringView, in qt7 QLatin1String will be removed
Sep 13 2024, 8:39 AM
gniibe committed rGb08d990607b6: tests:gpgscm: Raise an error correctly for process spawning. (authored by gniibe).
tests:gpgscm: Raise an error correctly for process spawning.
Sep 13 2024, 4:04 AM

Sep 12 2024

werner changed the status of T6815: PQC encryption for GnuPG from Open to Testing.

See new subtask T7290 for smartcards and the link entries mentioned above.

Sep 12 2024, 2:32 PM · gnupg26, OpenPGP, PQC, gnupg
werner changed the status of T6815: PQC encryption for GnuPG, a subtask of T6638: PQC for GnuPG, from Open to Testing.
Sep 12 2024, 2:32 PM · OpenPGP, PQC, gnupg
werner triaged T7290: Kyber+ECC with smartcards as Normal priority.
Sep 12 2024, 2:31 PM · gnupg26, OpenPGP, PQC, gnupg
werner committed rDdb0ba908f0cb: web: Fix order of NEWS (authored by werner).
web: Fix order of NEWS
Sep 12 2024, 2:14 PM
werner committed rD694d702b174c: web: GnuPG 2.5.1 announcement (authored by werner).
web: GnuPG 2.5.1 announcement
Sep 12 2024, 2:05 PM
mlaurent committed rLIBKLEOe3fb2a2f8594: QLatin1String is same as QLatin1StringView, in qt7 QLatin1String will be removed (authored by mlaurent).
QLatin1String is same as QLatin1StringView, in qt7 QLatin1String will be removed
Sep 12 2024, 1:37 PM
mlaurent committed rMTP740d17509bf4: GIT_SILENT: prepare 6.2.2 (authored by mlaurent).
GIT_SILENT: prepare 6.2.2
Sep 12 2024, 1:25 PM
mlaurent committed rLIBKLEO8b3be1f59e6b: GIT_SILENT: prepare 6.2.2 (authored by mlaurent).
GIT_SILENT: prepare 6.2.2
Sep 12 2024, 1:22 PM
werner added a member for Contributor: twolife.
Sep 12 2024, 12:50 PM
werner committed rD0937eafdab22: web: Add checksum lines for gnupg26 (authored by werner).
web: Add checksum lines for gnupg26
Sep 12 2024, 12:48 PM
werner committed rD3bfe11b8355a: fix last commit (authored by werner).
fix last commit
Sep 12 2024, 12:48 PM
werner committed rD263d35b93ded: swdb: GnuPG 2.5.1 (authored by werner).
swdb: GnuPG 2.5.1
Sep 12 2024, 12:48 PM
werner updated the task description for T7191: Release GnuPG 2.5.1.
Sep 12 2024, 12:22 PM · Release Info, gnupg
werner committed rGff63ffa60664: Post release updates (authored by werner).
Post release updates
Sep 12 2024, 12:07 PM
werner committed rG72ef316aab22: Release 2.5.1 (authored by werner).
Release 2.5.1
Sep 12 2024, 12:07 PM
werner committed rGe5e3e225fe98: tools: Fix recent regressions in gpg-authcode-sign.sh (authored by werner).
tools: Fix recent regressions in gpg-authcode-sign.sh
Sep 12 2024, 12:07 PM
werner triaged T7289: Release GnuPG 2.5.2 as Low priority.
Sep 12 2024, 12:04 PM · gnupg, Release Info, gnupg26
werner committed rGb357ff2aa64c: gpg: Don't bail out for unknown subkey packet versions. (authored by werner).
gpg: Don't bail out for unknown subkey packet versions.
Sep 12 2024, 11:04 AM
mlaurent committed rKLEOPATRAc247a630167e: GIT_SILENT: add REUSE.toml to annotations area (authored by mlaurent).
GIT_SILENT: add REUSE.toml to annotations area
Sep 12 2024, 7:32 AM
mlaurent committed rMTPdabf01acf454: GIT_SILENT: add REUSE.toml to annotations area (authored by mlaurent).
GIT_SILENT: add REUSE.toml to annotations area
Sep 12 2024, 7:27 AM
mlaurent committed rKLEOPATRA3059c459fb65: .reuse file didn't need license but REUSE.toml needs it (authored by mlaurent).
.reuse file didn't need license but REUSE.toml needs it
Sep 12 2024, 7:19 AM
mlaurent committed rMTP1f0ff0f264e9: .reuse file didn't need license but REUSE.toml needs it (authored by mlaurent).
.reuse file didn't need license but REUSE.toml needs it
Sep 12 2024, 7:18 AM
mlaurent committed rMTP8850a355b789: Convert .reuse/dep5 to REUSE.toml (authored by mlaurent).
Convert .reuse/dep5 to REUSE.toml
Sep 12 2024, 7:18 AM
gniibe changed the status of T7220: The CF protection not enabled in libgcrypt from Open to Testing.
Sep 12 2024, 7:17 AM · libgcrypt, Bug Report
gniibe changed the status of T7226: libgcrypt 1.11.0 buid error on armhf with gcc-14 from Open to Testing.
Sep 12 2024, 7:17 AM · FTBFS, arm, libgcrypt, Bug Report
gniibe changed the status of T7246: libassuan 3.0.1: putc_unlocked() is re-defined unconditionally from Open to Testing.
Sep 12 2024, 7:12 AM · libassuan, MacOS, Bug Report
mlaurent committed rKLEOPATRA4442e795a204: Convert .reuse/dep5 to REUSE.toml (authored by mlaurent).
Convert .reuse/dep5 to REUSE.toml
Sep 12 2024, 6:54 AM
mlaurent committed rLIBKLEO87f48128dd5a: Convert .reuse/dep5 to REUSE.toml (authored by mlaurent).
Convert .reuse/dep5 to REUSE.toml
Sep 12 2024, 6:51 AM

Sep 11 2024

werner committed rG6f2180e9126e: build: Fix make distclean for gnupg.7.html (authored by werner).
build: Fix make distclean for gnupg.7.html
Sep 11 2024, 3:11 PM
werner committed rGc6f195821cb5: po: msgmerge (authored by werner).
po: msgmerge
Sep 11 2024, 3:11 PM
werner committed rG33e571a74a7d: gpgsm: New option --assert-signer (authored by werner).
gpgsm: New option --assert-signer
Sep 11 2024, 3:11 PM
werner committed rG2125f228d36c: build: Remove configure option --enable-gpg-is-gpg2 (authored by werner).
build: Remove configure option --enable-gpg-is-gpg2
Sep 11 2024, 3:11 PM
werner committed rGea178ca074a6: po: Update the German translation (authored by werner).
po: Update the German translation
Sep 11 2024, 3:11 PM
werner committed rG138e0185925a: tests: Updated PQC test data to the final Kyber algo id. (authored by werner).
tests: Updated PQC test data to the final Kyber algo id.
Sep 11 2024, 3:11 PM
werner committed rG6b7868fc0e3a: doc: Updated comments in speedo.mk (authored by werner).
doc: Updated comments in speedo.mk
Sep 11 2024, 3:11 PM