- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
All Stories
Sun, Mar 23
Fri, Mar 21
Indeed, GnuPG's IPC uses TCP connections from 127.0.0.1 to 127.0.0.1 taking the destination port (and a cookie) from a file. We can't change that easily to the new Unix socket implementation Windows recently introduced. I hope there is a way to exclude localhost->localhost from congestion control.
Grep'ing through my checked out codebases, nothing of relevance to us uses short key ids anymore.
I have checked the current usage of Key::has* and Key::can* and they all make sense.
In version Version VS-Desktop-3.3.0.0 a certificate imported via WKD is correctly shown as level 2 security:
No error message in that case for Gpg4win 4.4.o either
We decided to ditch the display of the private key location for OpenPGP keypairs. Only the subkey locations remain.
I changed my mind. SQLite specific patch might be better:
diff --git a/kbx/backend-sqlite.c b/kbx/backend-sqlite.c index 4c67c3ef7..1db2f2c8d 100644 --- a/kbx/backend-sqlite.c +++ b/kbx/backend-sqlite.c @@ -154,7 +154,7 @@ static struct /* The full user id - for X.509 the Subject or altSubject. */ "uid TEXT NOT NULL," /* The mail address if available or NULL. */ - "addrspec TEXT," + "addrspec TEXT COLLATE NOCASE," /* The type of the public key: 1 = openpgp, 2 = X.509. */ "type INTEGER NOT NULL," /* The order number of the user id within the keyblock or
I changed my mind. SQLite specific patch might be better:
diff --git a/kbx/backend-sqlite.c b/kbx/backend-sqlite.c index 4c67c3ef7..1db2f2c8d 100644 --- a/kbx/backend-sqlite.c +++ b/kbx/backend-sqlite.c @@ -154,7 +154,7 @@ static struct /* The full user id - for X.509 the Subject or altSubject. */ "uid TEXT NOT NULL," /* The mail address if available or NULL. */ - "addrspec TEXT," + "addrspec TEXT COLLATE NOCASE," /* The type of the public key: 1 = openpgp, 2 = X.509. */ "type INTEGER NOT NULL," /* The order number of the user id within the keyblock or
Here is a possible change:
I applied some to master (generic improvement parts).
Thu, Mar 20
Is not a GpgOL bug.
Full functionality will be possible with GpgOL/WEB.
We decided on "Close window automatically on success". (German: "Fenster bei Erfolg automatisch schließen")
I think that this may be the last update.
Don't use mpi_powm to avoid normalizing (and to be faster).
Wed, Mar 19
IIUC, the address is stored with lowercase, but searching is done not converting lowercase.
Attached is a patch which adds gpgme_subkey_set_flag() to handle both encryption and signing keys. Or maybe it would be better to add another signing function that does recpstring?
Tue, Mar 18
The migration of the group config file works again.
This was a prerequisite for other tickets which are resolved, so it works.
Here is another update (replacing ecc-no-normalize-2025-03-13.patch).
Further, ec_addm is modified to be less leaky.