aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/misc.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-04-30 14:06:01 +0000
committerWerner Koch <[email protected]>1998-04-30 14:06:01 +0000
commit448f8e53fe3e5d5ac54fe7151e512acbb6114ad5 (patch)
tree5cb5878aaff2738558b1355f5f17b48d300cb145 /cipher/misc.c
parentNEw (diff)
downloadgnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.tar.gz
gnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.zip
*** empty log message ***
Diffstat (limited to '')
-rw-r--r--cipher/misc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cipher/misc.c b/cipher/misc.c
index 3016b8e56..77cd03c7a 100644
--- a/cipher/misc.c
+++ b/cipher/misc.c
@@ -43,6 +43,7 @@ static struct { const char *name; int algo;} digest_names[] = {
{ "RMD160", DIGEST_ALGO_RMD160 },
{ "RMD-160", DIGEST_ALGO_RMD160 },
{ "RIPE-MD-160", DIGEST_ALGO_RMD160 },
+ { "TIGER", DIGEST_ALGO_TIGER },
{NULL} };
@@ -149,6 +150,9 @@ int
check_digest_algo( int algo )
{
switch( algo ) {
+ #ifdef WITH_TIGER_HASH
+ case DIGEST_ALGO_TIGER:
+ #endif
case DIGEST_ALGO_MD5:
case DIGEST_ALGO_RMD160:
case DIGEST_ALGO_SHA1: