diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/cipher.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index bbb1bc1c9..0fa6e9916 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 6 19:58:12 CEST 1999 Werner Koch <[email protected]> + + * cipher.h (DEK): increased max. key length to 32 bytes + + Sat Feb 20 21:40:49 CET 1999 Werner Koch <[email protected]> * g10lib.h: Removed file and changed all files that includes this. diff --git a/include/cipher.h b/include/cipher.h index 3c4edc7ce..75a7b7175 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -61,7 +61,7 @@ typedef struct { int algo; int keylen; - byte key[24]; /* this is the largest used keylen (3des) */ + byte key[32]; /* this is the largest used keylen (256 bit) */ } DEK; struct cipher_handle_s; |