diff options
author | Werner Koch <wk@gnupg.org> | 1997-12-12 13:03:58 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1997-12-12 13:03:58 +0100 |
commit | 68ea0f43533096d5c46bad4aee6e5d5864307f4a (patch) | |
tree | f5d3601897a3bdfbce113d5e1ed8b4336c83744a /include/cipher.h | |
parent | fingerprints and self signatures added (diff) | |
download | gnupg2-68ea0f43533096d5c46bad4aee6e5d5864307f4a.tar.xz gnupg2-68ea0f43533096d5c46bad4aee6e5d5864307f4a.zip |
added option file handling
Diffstat (limited to 'include/cipher.h')
-rw-r--r-- | include/cipher.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cipher.h b/include/cipher.h index f918dcf08..2fab4daa2 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -30,6 +30,7 @@ #include "mpi.h" #include "../cipher/md5.h" #include "../cipher/rmd.h" +#include "../cipher/sha1.h" #ifdef HAVE_RSA_CIPHER #include "../cipher/rsa.h" #endif @@ -71,6 +72,7 @@ typedef struct { union { MD5HANDLE md5; RMDHANDLE rmd; + SHA1HANDLE sha1; } u; int datalen; char data[1]; |