mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
* g10.c (main): Add --no-throw-keyid.
* keydb.h, encode.c (write_pubkey_enc_from_list), g10.c (main), pkclist.c (build_pk_list): Add --hidden-recipient (-R) and --hidden-encrypt-to, which do a single-user variation on --throw-keyid. The "hide this key" flag is carried in bit 0 of the pk_list flags field. * keyserver.c (parse_keyrec): Fix shadowing warning.
This commit is contained in:
parent
7b4ad0f64c
commit
bdf0e306df
6 changed files with 69 additions and 12 deletions
|
@ -89,7 +89,7 @@ typedef struct pk_list *PK_LIST;
|
|||
struct pk_list {
|
||||
PK_LIST next;
|
||||
PKT_public_key *pk;
|
||||
int mark;
|
||||
int flags; /* flag bit 1==throw_keyid */
|
||||
};
|
||||
|
||||
/* structure to hold a couple of secret key certificates */
|
||||
|
@ -97,7 +97,7 @@ typedef struct sk_list *SK_LIST;
|
|||
struct sk_list {
|
||||
SK_LIST next;
|
||||
PKT_secret_key *sk;
|
||||
int mark;
|
||||
int mark; /* not used */
|
||||
};
|
||||
|
||||
/* structure to collect all information which can be used to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue