diff options
author | Werner Koch <[email protected]> | 1998-02-18 13:58:46 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-02-18 13:58:46 +0000 |
commit | b758180325b90184f7ac66267141cb5465c07a9f (patch) | |
tree | 69767c83c2ad2afd85db3cdbcb7489cc13c76123 /cipher/md.h | |
parent | import works (diff) | |
download | gnupg-b758180325b90184f7ac66267141cb5465c07a9f.tar.gz gnupg-b758180325b90184f7ac66267141cb5465c07a9f.zip |
added revcation stuff and fixed a couple of bugs
Diffstat (limited to '')
-rw-r--r-- | cipher/md.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cipher/md.h b/cipher/md.h index fc5d28df6..5903946c2 100644 --- a/cipher/md.h +++ b/cipher/md.h @@ -20,6 +20,7 @@ #ifndef G10_MD_H #define G10_MD_H +#include <stdio.h> #include "types.h" #include "rmd.h" #include "sha1.h" @@ -37,6 +38,7 @@ typedef struct { byte buffer[MD_BUFFER_SIZE]; /* primary buffer */ int bufcount; int secure; + FILE *debug; } *MD_HANDLE; |