mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-11 22:52:47 +01:00
common,gpg: Move the compliance option printer.
* common/compliance.c (gnupg_compliance_option_string): New function. * common/compliance.h (gnupg_compliance_option_string): New prototype. * g10/encrypt.c (write_pubkey_enc_from_list): Update callsite. * g10/gpg.c (main): Likewise. * g10/keyedit.c (keyedit_menu): Likewise. * g10/pkclist.c (build_pk_list): Likewise. * g10/main.h (compliance_option_string): Remove prototype. * g10/misc.c (compliance_option_string): Remove function. GnuPG-bug-id: 3191 Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
parent
842d233d40
commit
f440cf73ea
@ -243,3 +243,22 @@ gnupg_parse_compliance_option (const char *string,
|
|||||||
log_info (_ ("(use \"help\" to list choices)\n"));
|
log_info (_ ("(use \"help\" to list choices)\n"));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Return the command line option for the given COMPLIANCE mode. */
|
||||||
|
const char *
|
||||||
|
gnupg_compliance_option_string (enum gnupg_compliance_mode compliance)
|
||||||
|
{
|
||||||
|
switch (compliance)
|
||||||
|
{
|
||||||
|
case CO_GNUPG: return "--compliance=gnupg";
|
||||||
|
case CO_RFC4880: return "--compliance=openpgp";
|
||||||
|
case CO_RFC2440: return "--compliance=rfc2440";
|
||||||
|
case CO_PGP6: return "--compliance=pgp6";
|
||||||
|
case CO_PGP7: return "--compliance=pgp7";
|
||||||
|
case CO_PGP8: return "--compliance=pgp8";
|
||||||
|
case CO_DE_VS: return "--compliance=de-vs";
|
||||||
|
}
|
||||||
|
|
||||||
|
log_assert (!"invalid compliance mode");
|
||||||
|
}
|
||||||
|
@ -58,5 +58,7 @@ int gnupg_parse_compliance_option (const char *string,
|
|||||||
struct gnupg_compliance_option options[],
|
struct gnupg_compliance_option options[],
|
||||||
size_t length,
|
size_t length,
|
||||||
int quiet);
|
int quiet);
|
||||||
|
const char *gnupg_compliance_option_string (enum gnupg_compliance_mode compliance);
|
||||||
|
|
||||||
|
|
||||||
#endif /*GNUPG_COMMON_COMPLIANCE_H*/
|
#endif /*GNUPG_COMMON_COMPLIANCE_H*/
|
||||||
|
@ -932,7 +932,7 @@ write_pubkey_enc_from_list (ctrl_t ctrl, PK_LIST pk_list, DEK *dek, iobuf_t out)
|
|||||||
if (opt.throw_keyids && (PGP6 || PGP7 || PGP8))
|
if (opt.throw_keyids && (PGP6 || PGP7 || PGP8))
|
||||||
{
|
{
|
||||||
log_info(_("you may not use %s while in %s mode\n"),
|
log_info(_("you may not use %s while in %s mode\n"),
|
||||||
"--throw-keyids",compliance_option_string());
|
"--throw-keyids", gnupg_compliance_option_string (opt.compliance));
|
||||||
compliance_failure();
|
compliance_failure();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
12
g10/gpg.c
12
g10/gpg.c
@ -3843,17 +3843,17 @@ main (int argc, char **argv)
|
|||||||
case PREFTYPE_SYM:
|
case PREFTYPE_SYM:
|
||||||
log_info(_("you may not use cipher algorithm '%s'"
|
log_info(_("you may not use cipher algorithm '%s'"
|
||||||
" while in %s mode\n"),
|
" while in %s mode\n"),
|
||||||
badalg,compliance_option_string());
|
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||||
break;
|
break;
|
||||||
case PREFTYPE_HASH:
|
case PREFTYPE_HASH:
|
||||||
log_info(_("you may not use digest algorithm '%s'"
|
log_info(_("you may not use digest algorithm '%s'"
|
||||||
" while in %s mode\n"),
|
" while in %s mode\n"),
|
||||||
badalg,compliance_option_string());
|
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||||
break;
|
break;
|
||||||
case PREFTYPE_ZIP:
|
case PREFTYPE_ZIP:
|
||||||
log_info(_("you may not use compression algorithm '%s'"
|
log_info(_("you may not use compression algorithm '%s'"
|
||||||
" while in %s mode\n"),
|
" while in %s mode\n"),
|
||||||
badalg,compliance_option_string());
|
badalg, gnupg_compliance_option_string (opt.compliance));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
BUG();
|
BUG();
|
||||||
@ -4072,7 +4072,8 @@ main (int argc, char **argv)
|
|||||||
" with --s2k-mode 0\n"));
|
" with --s2k-mode 0\n"));
|
||||||
else if(PGP6 || PGP7)
|
else if(PGP6 || PGP7)
|
||||||
log_error(_("you cannot use --symmetric --encrypt"
|
log_error(_("you cannot use --symmetric --encrypt"
|
||||||
" while in %s mode\n"),compliance_option_string());
|
" while in %s mode\n"),
|
||||||
|
gnupg_compliance_option_string (opt.compliance));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( (rc = encrypt_crypt (ctrl, -1, fname, remusr, 1, NULL, -1)) )
|
if( (rc = encrypt_crypt (ctrl, -1, fname, remusr, 1, NULL, -1)) )
|
||||||
@ -4132,7 +4133,8 @@ main (int argc, char **argv)
|
|||||||
" with --s2k-mode 0\n"));
|
" with --s2k-mode 0\n"));
|
||||||
else if(PGP6 || PGP7)
|
else if(PGP6 || PGP7)
|
||||||
log_error(_("you cannot use --symmetric --sign --encrypt"
|
log_error(_("you cannot use --symmetric --sign --encrypt"
|
||||||
" while in %s mode\n"),compliance_option_string());
|
" while in %s mode\n"),
|
||||||
|
gnupg_compliance_option_string (opt.compliance));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( argc )
|
if( argc )
|
||||||
|
@ -2314,7 +2314,7 @@ keyedit_menu (ctrl_t ctrl, const char *username, strlist_t locusr,
|
|||||||
if (RFC2440)
|
if (RFC2440)
|
||||||
{
|
{
|
||||||
tty_printf (_("This command is not allowed while in %s mode.\n"),
|
tty_printf (_("This command is not allowed while in %s mode.\n"),
|
||||||
compliance_option_string ());
|
gnupg_compliance_option_string (opt.compliance));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
photo = 1;
|
photo = 1;
|
||||||
|
@ -155,7 +155,6 @@ int string_to_compress_algo(const char *string);
|
|||||||
int check_compress_algo(int algo);
|
int check_compress_algo(int algo);
|
||||||
int default_cipher_algo(void);
|
int default_cipher_algo(void);
|
||||||
int default_compress_algo(void);
|
int default_compress_algo(void);
|
||||||
const char *compliance_option_string(void);
|
|
||||||
void compliance_failure(void);
|
void compliance_failure(void);
|
||||||
|
|
||||||
struct parse_options
|
struct parse_options
|
||||||
|
18
g10/misc.c
18
g10/misc.c
@ -1242,24 +1242,6 @@ default_compress_algo(void)
|
|||||||
return DEFAULT_COMPRESS_ALGO;
|
return DEFAULT_COMPRESS_ALGO;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
|
||||||
compliance_option_string(void)
|
|
||||||
{
|
|
||||||
char *ver="???";
|
|
||||||
|
|
||||||
switch(opt.compliance)
|
|
||||||
{
|
|
||||||
case CO_GNUPG: return "--gnupg";
|
|
||||||
case CO_RFC4880: return "--openpgp";
|
|
||||||
case CO_RFC2440: return "--rfc2440";
|
|
||||||
case CO_PGP6: return "--pgp6";
|
|
||||||
case CO_PGP7: return "--pgp7";
|
|
||||||
case CO_PGP8: return "--pgp8";
|
|
||||||
case CO_DE_VS: return "--compliance=de-vs";
|
|
||||||
}
|
|
||||||
|
|
||||||
return ver;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
compliance_failure(void)
|
compliance_failure(void)
|
||||||
|
@ -1028,7 +1028,7 @@ build_pk_list (ctrl_t ctrl, strlist_t rcpts, PK_LIST *ret_pk_list)
|
|||||||
{
|
{
|
||||||
log_info(_("you may not use %s while in %s mode\n"),
|
log_info(_("you may not use %s while in %s mode\n"),
|
||||||
"--hidden-recipient",
|
"--hidden-recipient",
|
||||||
compliance_option_string());
|
gnupg_compliance_option_string (opt.compliance));
|
||||||
|
|
||||||
compliance_failure();
|
compliance_failure();
|
||||||
}
|
}
|
||||||
@ -1079,7 +1079,7 @@ build_pk_list (ctrl_t ctrl, strlist_t rcpts, PK_LIST *ret_pk_list)
|
|||||||
{
|
{
|
||||||
log_info(_("you may not use %s while in %s mode\n"),
|
log_info(_("you may not use %s while in %s mode\n"),
|
||||||
"--hidden-encrypt-to",
|
"--hidden-encrypt-to",
|
||||||
compliance_option_string());
|
gnupg_compliance_option_string (opt.compliance));
|
||||||
|
|
||||||
compliance_failure();
|
compliance_failure();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user