Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-24 | Changelog re #619, re #613 | Jeff Forcier | |
2016-04-24 | Merge branch '1.16' into 619-int | Jeff Forcier | |
2016-04-24 | Merge branch '1.16' | Jeff Forcier | |
2016-04-24 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-04-24 | Expose some effectively-public Channel attributes in API docs. | Jeff Forcier | |
Closes #621 | |||
2016-04-23 | Merge branch '1.16' | Jeff Forcier | |
2016-04-23 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-04-23 | Meh | Jeff Forcier | |
2016-04-23 | Refactor because ugh. | Jeff Forcier | |
Original contributor probably meant to patch both of these...BUT. Fuck copy-pasting. Fuck iiiiiit | |||
2016-04-23 | Update existing test to prove #632 | Jeff Forcier | |
2016-04-23 | Changelog closes #632 | Jeff Forcier | |
2016-04-23 | Update sftp_client.py | Abhinav | |
2016-04-23 | s/CFFI/libffi/ as per @reaperhulk | Jeff Forcier | |
2016-04-23 | Fix broken changelog doc link | Jeff Forcier | |
2016-04-23 | Splice 1.x install docs back in as standalone document. | Jeff Forcier | |
Plus related tweaks | |||
2016-04-23 | Tweaks to install docs re #394 | Jeff Forcier | |
2016-04-23 | Merge branch '1.16' | Jeff Forcier | |
2016-04-23 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-04-23 | Fix broken changelog doc link | Jeff Forcier | |
2016-04-23 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
2016-04-23 | Add regression test protecting against an issue found in #394. | Jeff Forcier | |
Putting it in prior to merge of #394 because it also serves as a good explicit test of behavior which was previously implicit | |||
2016-04-23 | remove unused thing | Alex Gaynor | |
2016-04-23 | handle invalid keys in ecdsa | Alex Gaynor | |
2016-04-23 | handle invalid keys | Alex Gaynor | |
2016-04-23 | Set look_for_keys=False in client tests to avoid loading real user keys. | Jeff Forcier | |
Re #394 but also feels like good practice anyways | |||
2016-04-23 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
2016-04-22 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-04-22 | Merge branch '1.16' | Jeff Forcier | |
2016-04-22 | Hack in a sleep() to avoid race conditions during timeout test. | Jeff Forcier | |
(HOPEFULLY) closes #612 | |||
2016-02-27 | removed the whitespace as was done on master | Alex Gaynor | |
2016-02-27 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
2016-02-27 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-02-27 | Merge branch '1.16' | Jeff Forcier | |
2016-02-27 | Merge branch '1.14' into 1.15 | Jeff Forcier | |
2016-02-27 | Merge branch '1.13' into 1.14 | Jeff Forcier | |
2016-02-27 | Changelog re #697 | Jeff Forcier | |
2016-02-27 | Remove whitespace in install_requires to avoid potential setuptools bugs | Jeff Forcier | |
Fixes #697 | |||
2016-01-19 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-01-19 | Merge branch '1.16' | Jeff Forcier | |
2016-01-19 | Merge branch '1.14' into 1.15 | Jeff Forcier | |
2016-01-19 | Merge branch '1.13' into 1.14 | Jeff Forcier | |
2016-01-19 | Changelog re #499, re #656 | Jeff Forcier | |
Closes #499 | |||
2016-01-19 | Merge pull request #656 from 56quarters/bugfix/499 | Jeff Forcier | |
Update SSHConfig.parse to strip leading and trailing whitespace | |||
2016-01-08 | Update SSHConfig.parse to strip leading and trailing whitespace | Nick Pillitteri | |
Fixes #499 | |||
2016-01-01 | Merge branch '1.16' | Jeff Forcier | |
2016-01-01 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-01-01 | Changelog re #652 | Jeff Forcier | |
2016-01-01 | Gracefully fail gss-with-mic to allow fallback to next authentication | JimC | |
method | |||
2016-01-01 | Happy new year | Jeff Forcier | |
2015-12-23 | primes: min and max should be inclusive. | Damien Tournoud | |
As seen in the [OpenSSH source code][1], the min and max values of the 'diffie-hellman-group-exchange-*' key exchange types are supposed to be inclusive. In the current state of the code and a standard /etc/ssh/moduli file, OpenSSH client sends min=1024, max=8192, prefer=8192, but paramiko returns one of the 7680 bits prime instead of one of the 8192 bits ones. [1]: https://github.com/openssh/openssh-portable/blob/master/kexgexc.c#L111 |