1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Tue Apr 6 19:58:12 CEST 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-04-06 18:04:55 +00:00
parent 88d44edc56
commit 1b9a820c19
12 changed files with 145 additions and 53 deletions

View file

@ -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.

View file

@ -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;