mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Add gpgconf related dummy options default_pubkey_algo.
Add option --skip-hidden-recipients Comment updates.
This commit is contained in:
parent
5741eace29
commit
cf2ec5673f
12 changed files with 71 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-11-23 Werner Koch <wk@g10code.com>
|
||||
|
||||
* gpgsm.c (main) <aGpgConfList>: Add key "default_pubkey_algo".
|
||||
|
||||
2009-11-10 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
||||
* server.c (cmd_getauditlog): Don't dup FD for es_fdopen_nc as
|
||||
|
|
|
@ -475,7 +475,8 @@ proc_parameters (ctrl_t ctrl,
|
|||
return gpg_error (GPG_ERR_INV_PARAMETER);
|
||||
}
|
||||
|
||||
/* Check the keylength. */
|
||||
/* Check the keylength. NOTE: If you change this make sure that it
|
||||
macthes the gpgconflist item in gpgsm.c */
|
||||
if (!get_parameter (para, pKEYLENGTH, 0))
|
||||
nbits = 2048;
|
||||
else
|
||||
|
|
|
@ -1634,6 +1634,11 @@ main ( int argc, char **argv)
|
|||
printf ("encrypt-to:%lu:\n", GC_OPT_FLAG_DEFAULT);
|
||||
printf ("keyserver:%lu:\n", GC_OPT_FLAG_NONE);
|
||||
|
||||
/* The next one is an info only item and should match what
|
||||
proc_parameters actually implements. */
|
||||
printf ("default_pubkey_algo:%lu:\"%s:\n", GC_OPT_FLAG_DEFAULT,
|
||||
"RSA-2048");
|
||||
|
||||
}
|
||||
break;
|
||||
case aGPGConfTest:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue