1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-12 16:47:42 -05:00

Add a key length indication to each SSH2 cipher structure, in

preparation for needing to know how much key material each cipher
needs in order to select a suitable Diffie-Hellman group.

[originally from svn r961]
This commit is contained in:
Simon Tatham
2001-03-01 17:45:31 +00:00
parent f72b5aa95f
commit 862d6a496d
3 changed files with 6 additions and 5 deletions

1
ssh.h
View File

@ -103,6 +103,7 @@ struct ssh_cipher {
void (*decrypt)(unsigned char *blk, int len);
char *name;
int blksize;
int keylen;
};
struct ssh_mac {