mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
g10,sm: Spell out --passwd.
* g10/gpg.c (opts): Spell out option. * sm/gpgsm.c (opts): Likewise. * doc/gpg.texi: Update accordingly. * doc/gpgsm.texi: Likewise. GnuPG-bug-id: 2700 Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
ec1bd3ae68
commit
c1c35fb887
@ -1073,8 +1073,8 @@ you want to specify a different revocation reason, or to supply
|
|||||||
supplementary revocation text, you should use the interactive
|
supplementary revocation text, you should use the interactive
|
||||||
sub-command @code{revuid} of @option{--edit-key}.
|
sub-command @code{revuid} of @option{--edit-key}.
|
||||||
|
|
||||||
@item --passwd @var{user_id}
|
@item --change-passphrase @var{user_id}
|
||||||
@opindex passwd
|
@opindex change-passphrase
|
||||||
Change the passphrase of the secret key belonging to the certificate
|
Change the passphrase of the secret key belonging to the certificate
|
||||||
specified as @var{user_id}. This is a shortcut for the sub-command
|
specified as @var{user_id}. This is a shortcut for the sub-command
|
||||||
@code{passwd} of the edit key menu.
|
@code{passwd} of the edit key menu.
|
||||||
|
@ -283,8 +283,8 @@ Read information about the private keys from the smartcard and import
|
|||||||
the certificates from there. This command utilizes the @command{gpg-agent}
|
the certificates from there. This command utilizes the @command{gpg-agent}
|
||||||
and in turn the @command{scdaemon}.
|
and in turn the @command{scdaemon}.
|
||||||
|
|
||||||
@item --passwd @var{user_id}
|
@item --change-passphrase @var{user_id}
|
||||||
@opindex passwd
|
@opindex change-passphrase
|
||||||
Change the passphrase of the private key belonging to the certificate
|
Change the passphrase of the private key belonging to the certificate
|
||||||
specified as @var{user_id}. Note, that changing the passphrase/PIN of a
|
specified as @var{user_id}. Note, that changing the passphrase/PIN of a
|
||||||
smartcard is not yet supported.
|
smartcard is not yet supported.
|
||||||
|
@ -474,7 +474,8 @@ static ARGPARSE_OPTS opts[] = {
|
|||||||
ARGPARSE_c (aLSignKey, "lsign-key" ,N_("sign a key locally")),
|
ARGPARSE_c (aLSignKey, "lsign-key" ,N_("sign a key locally")),
|
||||||
ARGPARSE_c (aEditKey, "edit-key" ,N_("sign or edit a key")),
|
ARGPARSE_c (aEditKey, "edit-key" ,N_("sign or edit a key")),
|
||||||
ARGPARSE_c (aEditKey, "key-edit" ,"@"),
|
ARGPARSE_c (aEditKey, "key-edit" ,"@"),
|
||||||
ARGPARSE_c (aPasswd, "passwd", N_("change a passphrase")),
|
ARGPARSE_c (aPasswd, "change-passphrase", N_("change a passphrase")),
|
||||||
|
ARGPARSE_c (aPasswd, "passwd", "@"),
|
||||||
ARGPARSE_c (aDesigRevoke, "desig-revoke","@" ),
|
ARGPARSE_c (aDesigRevoke, "desig-revoke","@" ),
|
||||||
ARGPARSE_c (aExport, "export" , N_("export keys") ),
|
ARGPARSE_c (aExport, "export" , N_("export keys") ),
|
||||||
ARGPARSE_c (aSendKeys, "send-keys" , N_("export keys to a keyserver") ),
|
ARGPARSE_c (aSendKeys, "send-keys" , N_("export keys to a keyserver") ),
|
||||||
@ -4243,7 +4244,7 @@ main (int argc, char **argv)
|
|||||||
|
|
||||||
case aPasswd:
|
case aPasswd:
|
||||||
if (argc != 1)
|
if (argc != 1)
|
||||||
wrong_args (_("--passwd <user-id>"));
|
wrong_args (_("--change-passphrase <user-id>"));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
username = make_username (fname);
|
username = make_username (fname);
|
||||||
|
@ -231,7 +231,8 @@ static ARGPARSE_OPTS opts[] = {
|
|||||||
N_("pass a command to the dirmngr")),
|
N_("pass a command to the dirmngr")),
|
||||||
ARGPARSE_c (aCallProtectTool, "call-protect-tool",
|
ARGPARSE_c (aCallProtectTool, "call-protect-tool",
|
||||||
N_("invoke gpg-protect-tool")),
|
N_("invoke gpg-protect-tool")),
|
||||||
ARGPARSE_c (aPasswd, "passwd", N_("change a passphrase")),
|
ARGPARSE_c (aPasswd, "change-passphrase", N_("change a passphrase")),
|
||||||
|
ARGPARSE_c (aPasswd, "passwd", "@"),
|
||||||
ARGPARSE_c (aGPGConfList, "gpgconf-list", "@"),
|
ARGPARSE_c (aGPGConfList, "gpgconf-list", "@"),
|
||||||
ARGPARSE_c (aGPGConfTest, "gpgconf-test", "@"),
|
ARGPARSE_c (aGPGConfTest, "gpgconf-test", "@"),
|
||||||
|
|
||||||
@ -1995,7 +1996,7 @@ main ( int argc, char **argv)
|
|||||||
|
|
||||||
case aPasswd:
|
case aPasswd:
|
||||||
if (argc != 1)
|
if (argc != 1)
|
||||||
wrong_args ("--passwd <key-Id>");
|
wrong_args ("--change-passphrase <key-Id>");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user