summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-04-24Changelog re #619, re #613Jeff Forcier
2016-04-24Merge branch '1.16' into 619-intJeff Forcier
2016-04-24Merge branch '1.16'Jeff Forcier
2016-04-24Merge branch '1.15' into 1.16Jeff Forcier
2016-04-24Expose some effectively-public Channel attributes in API docs.Jeff Forcier
Closes #621
2016-04-23Merge branch '1.16'Jeff Forcier
2016-04-23Merge branch '1.15' into 1.16Jeff Forcier
2016-04-23MehJeff Forcier
2016-04-23Refactor because ugh.Jeff Forcier
Original contributor probably meant to patch both of these...BUT. Fuck copy-pasting. Fuck iiiiiit
2016-04-23Update existing test to prove #632Jeff Forcier
2016-04-23Changelog closes #632Jeff Forcier
2016-04-23Update sftp_client.pyAbhinav
2016-04-23s/CFFI/libffi/ as per @reaperhulkJeff Forcier
2016-04-23Fix broken changelog doc linkJeff Forcier
2016-04-23Splice 1.x install docs back in as standalone document.Jeff Forcier
Plus related tweaks
2016-04-23Tweaks to install docs re #394Jeff Forcier
2016-04-23Merge branch '1.16'Jeff Forcier
2016-04-23Merge branch '1.15' into 1.16Jeff Forcier
2016-04-23Fix broken changelog doc linkJeff Forcier
2016-04-23Merge branch 'master' into switch-to-cryptographyAlex Gaynor
2016-04-23Add 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-23remove unused thingAlex Gaynor
2016-04-23handle invalid keys in ecdsaAlex Gaynor
2016-04-23handle invalid keysAlex Gaynor
2016-04-23Set 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-23Merge branch 'master' into switch-to-cryptographyAlex Gaynor
2016-04-22Merge branch '1.15' into 1.16Jeff Forcier
2016-04-22Merge branch '1.16'Jeff Forcier
2016-04-22Hack in a sleep() to avoid race conditions during timeout test.Jeff Forcier
(HOPEFULLY) closes #612
2016-02-27removed the whitespace as was done on masterAlex Gaynor
2016-02-27Merge branch 'master' into switch-to-cryptographyAlex Gaynor
2016-02-27Merge branch '1.15' into 1.16Jeff Forcier
2016-02-27Merge branch '1.16'Jeff Forcier
2016-02-27Merge branch '1.14' into 1.15Jeff Forcier
2016-02-27Merge branch '1.13' into 1.14Jeff Forcier
2016-02-27Changelog re #697Jeff Forcier
2016-02-27Remove whitespace in install_requires to avoid potential setuptools bugsJeff Forcier
Fixes #697
2016-01-19Merge branch '1.15' into 1.16Jeff Forcier
2016-01-19Merge branch '1.16'Jeff Forcier
2016-01-19Merge branch '1.14' into 1.15Jeff Forcier
2016-01-19Merge branch '1.13' into 1.14Jeff Forcier
2016-01-19Changelog re #499, re #656Jeff Forcier
Closes #499
2016-01-19Merge pull request #656 from 56quarters/bugfix/499Jeff Forcier
Update SSHConfig.parse to strip leading and trailing whitespace
2016-01-08Update SSHConfig.parse to strip leading and trailing whitespaceNick Pillitteri
Fixes #499
2016-01-01Merge branch '1.16'Jeff Forcier
2016-01-01Merge branch '1.15' into 1.16Jeff Forcier
2016-01-01Changelog re #652Jeff Forcier
2016-01-01Gracefully fail gss-with-mic to allow fallback to next authenticationJimC
method
2016-01-01Happy new yearJeff Forcier
2015-12-23primes: 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