diff options
author | Werner Koch <[email protected]> | 1999-10-26 12:14:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-10-26 12:14:37 +0000 |
commit | cf70ca8d68eb836b952f2c234f064b1afc205962 (patch) | |
tree | aa33afbc79efd1f8538e5286b13d900321a8f14b /g10/filter.h | |
parent | Changed the way it works - now needs an extra program to to most tasks. (diff) | |
download | gnupg-cf70ca8d68eb836b952f2c234f064b1afc205962.tar.gz gnupg-cf70ca8d68eb836b952f2c234f064b1afc205962.zip |
See ChangeLog: Tue Oct 26 14:10:21 CEST 1999 Werner Koch
Diffstat (limited to 'g10/filter.h')
-rw-r--r-- | g10/filter.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/g10/filter.h b/g10/filter.h index 02e4e2ed6..321a4ca9e 100644 --- a/g10/filter.h +++ b/g10/filter.h @@ -22,7 +22,9 @@ #include <gcrypt.h> -#include "types.h" +#include "basicdefs.h" + + typedef struct { GCRY_MD_HD md; /* catch all */ @@ -83,6 +85,13 @@ typedef struct { } cipher_filter_context_t; +typedef struct { + int header_okay; + PK_LIST pk_list; + cipher_filter_context_t cfx; +} encrypt_filter_context_t; + + typedef struct { byte *buffer; /* malloced buffer */ |