Add a key length indication to each SSH2 cipher structure, in
[u/mdw/putty] / ssh.h
diff --git a/ssh.h b/ssh.h
index 320c84e..6584029 100644 (file)
--- a/ssh.h
+++ b/ssh.h
@@ -103,6 +103,7 @@ struct ssh_cipher {
     void (*decrypt)(unsigned char *blk, int len);
     char *name;
     int blksize;
+    int keylen;
 };
 
 struct ssh_mac {