Log the hash used for DH kex (now there's a choice).
[u/mdw/putty] / ssh.c
2006-03-12 jacobLog the hash used for DH kex (now there's a choice).
2006-02-19 simonDaniel Meidlinger points out a redundant test :-)
2006-02-19 simonIntroduce a new checkbox and command-line option to...
2005-12-07 jacobApparently some SSH servers object to our claiming...
2005-11-13 jacobr6437 broke the case where Pageant is running but conta...
2005-11-09 jacobI broke the ability to cope with multiple consecutive...
2005-11-04 jacobFix minor hiccup in SSH-1 p-k auth.
2005-11-04 jacobPlacate a compiler warning introduced in r6437.
2005-11-04 jacobFix for `ssh2-password-expiry'. Success case tested.
2005-10-31 jacob(do_ssh2_authconn_state).method is redundant since...
2005-10-30 jacobRevamp SSH authentication code so that user interaction...
2005-10-30 jacobAllow rsakey_pubblob() to return the key comment.
2005-10-30 jacobAdd ability for ssh2_userkey_loadpub() to return the...
2005-10-26 jacobFix an error I introduced into SSH packet logging in...
2005-10-13 jacobTweak to r6392: spell "MAC" thus.
2005-10-13 benMake SSH_MSG_DISCONNECT reasons less scary (without...
2005-09-10 benImplement hmac-sha1-96. It's RECOMMENDED in the curren...
2005-09-04 benAdd support for diffie-hellman-group-exchange-sha256...
2005-09-03 benRestructure things so that a single entry in the KEX...
2005-09-02 jacobCheck ssh->v2_session_id_len _after_ assigning to it.
2005-08-31 benAdd infrastructure for supporting multiple hashes in...
2005-08-31 benRename ssh_md5 and ssh_sha1 to ssh_hmac_md5 and ssh_hma...
2005-08-30 benFurther progress in the direction of variable exchange...
2005-08-30 benBeginnings of support for multiple exchange hashes...
2005-08-29 jacobMore versions of WeOnlyDo have the rekey bug (but they...
2005-08-26 jacobI think this should fix various problems with queued...
2005-08-22 benFlorian Gaab reports that freeSSHd 1.0.7, which claims...
2005-07-24 bendraft-ietf-secsh-transport-24 says that only "SSH-...
2005-07-05 benPiers Finlayson reports that "DigiSSH_2.0" chokes ...
2005-06-21 jacobFix an apparently-harmless error spotted by Ben Rudiak...
2005-06-20 benMake the sanity-checks on the size of incoming packets...
2005-06-19 benA major purpose of PuTTY's memory-allocation functions...
2005-06-14 jacobDetection of "auth-agent@openssh.com" was too liberal...
2005-05-28 jacobRemove a couple of mistaken references to Telnet in...
2005-05-21 jacobFactor out all local SSH disconnections into a new...
2005-05-16 jacobconnection_fatal() should be called after ssh_closing...
2005-05-16 jacobDon't try and set up reconfigured port-forwardings...
2005-05-12 jacobUse the packet dispatch table to handle USERAUTH_BANNER...
2005-05-05 jacobImplement `bypass-ssh2-userauth', since from correspond...
2005-04-30 benAlso blank X authentication data when using SSH-1,...
2005-04-30 benX11 authentication data are generally sensitive, so...
2005-04-30 benFix stupid typo that probably utterly broke SSH-1 suppo...
2005-04-27 benIn SSH-2 mode, PuTTY wasn't sending KEXINIT until it...
2005-04-23 benNow that we've got at least some SDCTR modes working...
2005-04-21 jacobFirst crack at `terminal-modes' in SSH. PuTTY now sends...
2005-04-19 jacobRemove "none" from the MACs we offer to support in...
2005-04-18 jacobAdd ability to construct SSH-1 packets incrementally...
2005-04-14 benImplement my experimental arcfour modes. The 256-bit...
2005-04-12 jacobUnify GET_32BIT()/PUT_32BIT() et al from numerous sourc...
2005-03-30 simon<1112163342.018492.101240@f14g2000cwb.googlegroups...
2005-03-29 simonAfter we receive EOF on stdin, we should clear ssh...
2005-03-17 simonThe structural reorganisation of ssh.c (r4909) caused
2005-03-11 jacobMake it clearer which protocol version various bugs...
2005-03-10 jacobConsistently use a single notation to refer to SSH...
2005-03-06 jacobAdd notification when using the various auth methods...
2005-03-05 simonOver-enthusiastic assertions in the port forwarding...
2005-03-05 simonMake sure we do notify_remote_exit(ssh->frontend) _before_
2005-03-04 jacobrm some magic numbers in ssh_setup_portfwd()
2005-02-20 jacobAnother failure to crStop(0) on user abort, this time...
2005-02-19 simonOops; missed out a crStop in the new host key verificat...
2005-02-18 simonA few more fixes in the new asynchronous-alert-box...
2005-02-17 simonAdjust the semantics of cfg.remote_cmd_ptr: it is now...
2005-02-17 simonAhem. Actually _checking_ that asynchronous askalg...
2005-02-17 simonRevamp interface to verify_ssh_host_key() and askalg...
2005-02-17 jacobssh_do_close() should close any listening sockets assoc...
2005-02-17 jacobssh_do_close() was only closing about half the channels...
2005-02-16 jacobFix a minor valgrind issue in dynamic port-forwarding.
2005-02-15 jacobThe terminal window can now indicate that PuTTY is...
2005-02-10 jacobssh_setup_portfwd() should usually be looking at the...
2005-02-10 jacobSlightly gratuitous logeventf() crusade and purge of...
2005-01-26 owenMake a few things static
2005-01-22 benDon't abuse a remote channel number of (unsigned)(...
2005-01-22 benProbable support for first_kex_packet_follows in KEXINI...
2005-01-19 benWhile we're here, pad USERAUTH_INFO_RESPONSEs to 256...
2005-01-19 benMake the outgoing SSH2 sequence number unsigned, so...
2005-01-18 owenYes we do mean assignment. Bah.
2005-01-18 owenssh_pkt_getstring wants a boring int rather than an...
2005-01-17 owenChange some function arguments to void * to placate...
2005-01-17 benIn SSH2, rather than sending an SSH_MSG_IGNORE after...
2005-01-16 benBe a little less enthusiastic about sending SSH_MSG_CHA...
2005-01-16 simonSupport for falling back through the list of addresses...
2005-01-16 benMake our SSH2 maximum packet size into a constant,...
2005-01-11 simonFix `disconnect': arrange that we keep track of when...
2005-01-11 benVersions of OpenSSH before 2.5.4 kill the connection...
2005-01-11 simonBah, I left a rogue event log entry lying around.
2005-01-11 benSun_SSH_1.0.1 also has BUG_SSH2_REKEY.
2005-01-11 simonServers announcing themselves as `Sun_SSH_1.0' apparent...
2005-01-08 simonClear the kex-specific context in ssh->pkt_ctx for...
2005-01-07 jacobSimon points out that r5068 broke keyboard-interactive...
2005-01-07 simonUse sk_set_frozen() to ensure that no data will be...
2005-01-06 jacobAdd an explicit message about lack of support for PASSW...
2005-01-06 jacob`kbdint-failure': we now offer keyboard-interactive...
2004-12-31 simonAllow reconfiguration of compression and cipher settings in
2004-12-30 simonReinstate the textual service name in port forwarding...
2004-12-30 simonJacob points out that when we reconfigure port forwardi...
2004-12-30 simonIntegrate unfix.org's IPv6 patches up to level 10,...
2004-12-30 simonStray // comments.
2004-12-29 simonLoose end from r5031: the Kex panel should only be...
2004-12-28 simonThe latest unfix.org IPv6 patch contains these apparently
2004-12-28 simonForgot to initialise ssh->portfwds to NULL. Unusually...
next