1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Add a config option to emulate the HMAC bug in commercial SSH v2.3.x

and earlier (namely, it uses only 16 bytes of key rather than 20).

[originally from svn r706]
This commit is contained in:
Simon Tatham
2000-10-12 12:39:44 +00:00
parent 421aafb4c0
commit 3e83d75154
5 changed files with 51 additions and 13 deletions

View File

@ -147,6 +147,7 @@ typedef struct {
enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher;
char keyfile[FILENAME_MAX];
int sshprot; /* use v1 or v2 when both available */
int buggymac; /* MAC bug commmercial <=v2.3.x SSH2 */
int try_tis_auth;
/* Telnet options */
char termtype[32];