mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Added LIBINTL to more Makefile targets.
doc/ * com-certs.pem: Added the current root certifcates of D-Trust and S-Trust. g10/ * status.c (write_status_begin_signing): New. * sign.c (sign_file, sign_symencrypt_file): Call it. * textfilter.c (copy_clearsig_text): Call it. * call-agent.c (agent_scd_pksign): Pass --hash-rmd160 to SCD if required. * gpg.c (main): Let --no-use-agent and --gpg-agent-info print a warning. * misc.c (obsolete_option): New.
This commit is contained in:
parent
0d4b205630
commit
7eec2efa66
23 changed files with 286 additions and 13 deletions
17
g10/misc.c
17
g10/misc.c
|
@ -469,6 +469,10 @@ openpgp_pk_algo_usage ( int algo )
|
|||
int
|
||||
openpgp_md_test_algo( int algo )
|
||||
{
|
||||
/* Note: If the list of actual supported OpenPGP algorithms changes,
|
||||
make sure that our hard coded values at
|
||||
print_status_begin_signing() gets updated. */
|
||||
|
||||
if (algo < 0 || algo > 110)
|
||||
return gpg_error (GPG_ERR_DIGEST_ALGO);
|
||||
return gcry_md_test_algo (algo);
|
||||
|
@ -737,6 +741,19 @@ deprecated_command (const char *name)
|
|||
}
|
||||
|
||||
|
||||
void
|
||||
obsolete_option (const char *configname, unsigned int configlineno,
|
||||
const char *name)
|
||||
{
|
||||
if(configname)
|
||||
log_info (_("%s:%u: obsolete option \"%s\" - it has no effect\n"),
|
||||
configname, configlineno, name);
|
||||
else
|
||||
log_info (_("WARNING: \"%s\" is an obsolete option - it has no effect\n"),
|
||||
name);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Wrapper around gcry_cipher_map_name to provide a fallback using the
|
||||
* "Sn" syntax as used by the preference strings.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue