diff options
author | Werner Koch <wk@gnupg.org> | 1999-04-06 20:04:55 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1999-04-06 20:04:55 +0200 |
commit | 1b9a820c19d8ada57d19ea9ec1bbf7e80cb69d18 (patch) | |
tree | fa5639c6ee2652942b712a244125734d7155c937 /include | |
parent | ./BUGS (diff) | |
download | gnupg2-1b9a820c19d8ada57d19ea9ec1bbf7e80cb69d18.tar.xz gnupg2-1b9a820c19d8ada57d19ea9ec1bbf7e80cb69d18.zip |
See ChangeLog: Tue Apr 6 19:58:12 CEST 1999 Werner Koch
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 <wk@isil.d.shuttle.de> + + * cipher.h (DEK): increased max. key length to 32 bytes + + Sat Feb 20 21:40:49 CET 1999 Werner Koch <wk@isil.d.shuttle.de> * 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; |