diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/cipher.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 128176c10..aecb92b4a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,10 +1,12 @@ 2001-08-20 Werner Koch <[email protected]> + * cipher.h (DEK): Added algo_info_printed; + * util.h [__riscos__]: Added prototypes and made sure that we never use __attribute__. * cipher.h, iobuf.h, memory.h, mpi.h [__riscos__]: extern hack. * i18n.h [__riscos__]: Use another include file - + 2001-05-30 Werner Koch <[email protected]> * ttyio.h (tty_printf): Add missing parenthesis for non gcc. diff --git a/include/cipher.h b/include/cipher.h index 6863f98ec..ef00e5c3f 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -63,6 +63,7 @@ typedef struct { int algo; int keylen; + int algo_info_printed; byte key[32]; /* this is the largest used keylen (256 bit) */ } DEK; |