aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/md.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/md.c')
-rw-r--r--cipher/md.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/cipher/md.c b/cipher/md.c
index b5185bd92..f7ced3a4b 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -144,6 +144,12 @@ string_to_digest_algo( const char *string )
return 0;
}
+#ifdef USE_TIGER192
+ if(!ascii_strcasecmp("tiger192",string))
+ log_info(_("WARNING: digest `%s' is not part of OpenPGP. "
+ "Use at your own risk!\n"),string);
+#endif
+
do {
for(r = digest_list; r; r = r->next )
if( !ascii_strcasecmp( r->name, string ) )