diff options
Diffstat (limited to 'g10/misc.c')
-rw-r--r-- | g10/misc.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/g10/misc.c b/g10/misc.c index ef03776ef..17494aca4 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -340,6 +340,22 @@ print_digest_algo_note( int algo ) } +void +print_md5_rejected_note (void) +{ + static int shown; + + if (!shown) + { + fflush (stdout); + log_info + (_("Note: signatures using the %s algorithm are rejected\n"), + "MD5"); + shown = 1; + } +} + + /* Map OpenPGP algo numbers to those used by Libgcrypt. We need to do this for algorithms we implemented in Libgcrypt after they become part of OpenPGP. */ |