1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

gpgsm: Add compatibility flag no-keyinfo-cache

* sm/gpgsm.c (compatibility_flags): Add flag.
* sm/gpgsm.h (COMPAT_NO_KEYINFO_CACHE): New.
* sm/call-agent.c (gpgsm_agent_istrusted): Act upon it.
(gpgsm_agent_keyinfo): Ditto.
This commit is contained in:
Werner Koch 2024-10-04 12:03:11 +02:00
parent 9087c1d363
commit a5527edebb
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
3 changed files with 9 additions and 0 deletions

View file

@ -470,6 +470,7 @@ static struct compatibility_flags_s compatibility_flags [] =
{
{ COMPAT_ALLOW_KA_TO_ENCR, "allow-ka-to-encr" },
{ COMPAT_NO_CHAIN_CACHE, "no-chain-cache" },
{ COMPAT_NO_KEYINFO_CACHE, "no-keyinfo-cache" },
{ 0, NULL }
};