aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/md.h
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/md.h
parentNEw (diff)
downloadgnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.tar.gz
gnupg-448f8e53fe3e5d5ac54fe7151e512acbb6114ad5.zip
*** empty log message ***
Diffstat (limited to '')
-rw-r--r--cipher/md.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cipher/md.h b/cipher/md.h
index 961f61710..3bad06182 100644
--- a/cipher/md.h
+++ b/cipher/md.h
@@ -25,6 +25,7 @@
#include "rmd.h"
#include "sha1.h"
#include "md5.h"
+#include "tiger.h"
#define MD_BUFFER_SIZE 512
@@ -33,6 +34,10 @@ typedef struct {
RMD160_CONTEXT rmd160;
int use_sha1;
SHA1_CONTEXT sha1;
+ #ifdef WITH_TIGER_HASH
+ int use_tiger;
+ TIGER_CONTEXT tiger;
+ #endif
int use_md5;
MD5_CONTEXT md5;
byte buffer[MD_BUFFER_SIZE]; /* primary buffer */