Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 1) clean up the MAC support for SSH-2 | 2001-02-11 | 1 | -3/+7 | ||
| | | | | | | | 2) allow you to specify the MAC with 'ssh -m' 3) or the 'MACs' keyword in ssh(d)_config 4) add hmac-{md5,sha1}-96 ok stevesk@, provos@ | |||||
* | remove some lines | 2001-02-10 | 1 | -12/+5 | ||
| | ||||||
* | partial success: debug->log; "Permission denied" if no more auth methods | 2001-02-09 | 1 | -3/+3 | ||
| | ||||||
* | do not free twice, thanks to /etc/malloc.conf | 2001-02-09 | 1 | -2/+2 | ||
| | ||||||
* | %.30s is too short for IPv6 numeric address. use %.128s for now. markus ok | 2001-02-08 | 1 | -2/+2 | ||
| | ||||||
* | do not ask for passphrase in batch mode; report from ejb@ql.org | 2001-02-06 | 1 | -5/+8 | ||
| | ||||||
* | unexpand and remove end-of-line whitespace; ok markus@ | 2001-02-04 | 1 | -11/+11 | ||
| | ||||||
* | unused | 2001-01-31 | 1 | -2/+1 | ||
| | ||||||
* | rename skey -> challenge response. | 2001-01-22 | 1 | -1/+4 | ||
| | | | | auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled. | |||||
* | fix memory leaks in SSH2 key exchange; ok markus@ | 2001-01-22 | 1 | -1/+7 | ||
| | ||||||
* | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | 2001-01-21 | 1 | -5/+6 | ||
| | | | | rename util.[ch] -> misc.[ch] | |||||
* | dh_new_group() does not return NULL. ok markus@ | 2001-01-20 | 1 | -3/+2 | ||
| | ||||||
* | handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server that prints a banner (e.g. /etc/issue.net) | 2001-01-04 | 1 | -2/+16 | ||
| | ||||||
* | typo | 2000-12-27 | 1 | -2/+2 | ||
| | ||||||
* | fix prototypes; from stevesk@pobox.com | 2000-12-20 | 1 | -3/+3 | ||
| | ||||||
* | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | 2000-12-19 | 1 | -21/+21 | ||
| | | | | with u_char. | |||||
* | compute diffie-hellman in parallel between server and client. okay markus@ | 2000-12-15 | 1 | -1/+4 | ||
| | ||||||
* | support f-secure/ssh.com 2.0.12; ok niels@ | 2000-12-03 | 1 | -7/+14 | ||
| | ||||||
* | complain about invalid ciphers for ssh1/ssh2, fall back to reasonable defaults | 2000-11-23 | 1 | -9/+4 | ||
| | ||||||
* | add support for RSA to SSH2. please test. | 2000-11-12 | 1 | -34/+43 | ||
| | | | | | | | | | | | | | | | there are now 3 types of keys: RSA1 is used by ssh-1 only, RSA and DSA are used by SSH2. you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA keys for SSH2 and use the RSA keys for hostkeys or for user keys. SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before. IdentityFile2, HostDsaKey and DSAAuthentication are obsolete. you can use multiple IdentityFile and HostKey for all types of keys. the option DSAAuthentication is replaced by PubkeyAuthetication. | |||||
* | don't reference freed memory. okay deraadt@ | 2000-10-19 | 1 | -7/+8 | ||
| | ||||||
* | OpenSSH_2.3; note that is is not complete, but the version number needs to be changed for interoperability reasons | 2000-10-14 | 1 | -5/+5 | ||
| | ||||||
* | enable DES in SSH-1 clients only | 2000-10-12 | 1 | -1/+3 | ||
| | ||||||
* | new cipher framework | 2000-10-11 | 1 | -11/+9 | ||
| | ||||||
* | add support for s/key (kbd-interactive) to ssh2, based on work by mkiernan@avantgo.com and me | 2000-10-11 | 1 | -24/+138 | ||
| | ||||||
* | First rough implementation of the diffie-hellman group exchange. The | 2000-10-11 | 1 | -56/+243 | ||
| | | | | | | client can ask the server for bigger groups to perform the diffie-hellman in, thus increasing the attack complexity when using ciphers with longer keys. University of Windsor provided network, T the company. | |||||
* | use key_type() | 2000-09-27 | 1 | -3/+3 | ||
| | ||||||
* | change login logic in ssh2, allows plugin of other auth methods | 2000-09-21 | 1 | -120/+319 | ||
| | ||||||
* | fix DEBUG_KEXDH | 2000-09-17 | 1 | -5/+8 | ||
| | ||||||
* | cleanup copyright notices on all files. I have attempted to be accurate with | 2000-09-07 | 1 | -6/+1 | ||
| | | | | | | | the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate. | |||||
* | add SSH2/DSA support to the agent and some other DSA related cleanups. | 2000-08-19 | 1 | -11/+67 | ||
| | | | | (note that we cannot talk to ssh.com's ssh2 agents) | |||||
* | make ssh-add accept dsa keys (the agent does not) | 2000-07-16 | 1 | -30/+43 | ||
| | ||||||
* | missing free; nuke old comment | 2000-06-21 | 1 | -3/+4 | ||
| | ||||||
* | make userauth+pubkey interop with ssh.com-2.2.0 | 2000-06-19 | 1 | -4/+11 | ||
| | ||||||
* | teach protocol v2 to count login failures properly and also enable an | 2000-06-02 | 1 | -2/+5 | ||
| | | | | | explanation of why the password prompt comes up again like v1; this is NOT crypto | |||||
* | typo, unused | 2000-05-31 | 1 | -2/+1 | ||
| | ||||||
* | split kexinit/kexdh, factor out common code | 2000-05-25 | 1 | -80/+57 | ||
| | ||||||
* | bug compat w/ ssh-2.0.13 x11, split out bugs | 2000-05-08 | 1 | -3/+18 | ||
| | ||||||
* | complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only) | 2000-05-08 | 1 | -7/+8 | ||
| | ||||||
* | make x11-fwd interop w/ ssh-2.0.13 | 2000-05-07 | 1 | -2/+2 | ||
| | ||||||
* | add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8 | 2000-05-06 | 1 | -2/+2 | ||
| | ||||||
* | respect number_of_password_prompts | 2000-05-03 | 1 | -1/+5 | ||
| | ||||||
* | check whether file exists before asking for passphrase | 2000-05-01 | 1 | -3/+8 | ||
| | ||||||
* | less debug, respect .ssh/config | 2000-04-27 | 1 | -9/+8 | ||
| | ||||||
* | xfree DSA blobs | 2000-04-27 | 1 | -1/+3 | ||
| | ||||||
* | remove debug | 2000-04-26 | 1 | -3/+1 | ||
| | ||||||
* | split auth/sshconnect in one file per protocol version | 2000-04-26 | 1 | -0/+450 | ||