mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* options.h, keydb.h, g10.c (main), getkey.c (parse_auto_key_locate):
Parse a list of key access methods. (get_pubkey_byname): Walk the list here to try and retrieve keys we don't have locally.
This commit is contained in:
parent
e396cd2c7c
commit
7eab1846ca
5 changed files with 148 additions and 73 deletions
|
@ -220,6 +220,14 @@ struct
|
|||
error (but an invalid backsig still is). */
|
||||
int require_backsigs;
|
||||
|
||||
/* Linked list of ways to find a key if the key isn't on the local
|
||||
keyring. */
|
||||
struct akl
|
||||
{
|
||||
enum {AKL_CERT, AKL_PKA, AKL_LDAP, AKL_KEYSERVER} type;
|
||||
struct akl *next;
|
||||
} *auto_key_locate;
|
||||
|
||||
} opt;
|
||||
|
||||
/* CTRL is used to keep some global variables we currently can't
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue