Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-23 | Added ssh agent support. Ported from https://github.com/robey/paramiko/pull/21 | Ben Davis | |
(cherry picked from commit 35a173631f4d5be2e47d8880ee0a1df08f95cebc) Conflicts: paramiko/agent.py | |||
2012-09-23 | Bump to 1.7.9, setup.py/crypto update | Jeff Forcier | |
(cherry picked from commit ea8e73a389931962a2aea4c136a2a5d65d612c89) Conflicts: setup.py | |||
2012-09-23 | Crypto released a setuptools bugfix as 2.4.1. | Jeff Forcier | |
(cherry picked from commit 2279ef690932d8ba3627632f5e81bbf5f7bd8381) | |||
2012-09-23 | Crypto 2.4 doesn't play well with setup.py/setuptools | Jeff Forcier | |
(cherry picked from commit 12cf1674fcd8bf216ec2f12f4ddd111eb8db3514) | |||
2012-09-23 | Take ownership of TODO file | Jeff Forcier | |
2012-09-23 | Update version to 1.7.8, no need for 4 parts | Jeff Forcier | |
(cherry picked from commit 5e0a32902856b3b42e8bf4e72fec17fb30c78e66) Conflicts: README paramiko/__init__.py setup.py | |||
2012-09-23 | Tweak setup.py to match README | Jeff Forcier | |
(cherry picked from commit 673c427fe6fb39f1bb604eaf460daaaa0ce2875c) Conflicts: setup.py | |||
2012-09-23 | Add additional Random.atfork() to prevent RNG errors in large runs | Jeff Forcier | |
Conflicts: paramiko/transport.py Was: ssh 41f4566 | |||
2012-09-23 | Update README copyright notice (was ssh a228ab41) | Jeff Forcier | |
2012-09-13 | Initial port of 3709d2e02bf67ccc272e1f2311e5db125a922ba0 from 'ssh' | Jeff Forcier | |
Re #17 | |||
2012-07-04 | Fix trailing whitespace re #28 | Jeff Forcier | |
2012-07-04 | Add changelog entry re #28 | Jeff Forcier | |
2012-07-04 | document demo_keygen.py file in readme | Sofian Brabez | |
2012-07-04 | add priv/pub key generator demo | Sofian Brabez | |
2012-05-25 | Update changelog with #63 attribution | Jeff Forcier | |
2012-05-25 | Merge pull request #63 from dlitz/issue49-rekeying-fix | Jeff Forcier | |
Fix SSHException when re-keying over a fast connection | |||
2012-05-16 | Increment version for release | Jeff Forcier | |
2012-05-16 | Merge #63 | Jeff Forcier | |
2012-03-24 | Fix SSHException when re-keying over a fast connection | Dwayne C. Litzenberger | |
When Paramiko initiates a re-key request over a high-bandwidth, medium-latency connection, it erroneously terminates the connection with the error, "SSHException: Remote transport is ignoring rekey requests". This is due to the hard-coded limit of 20 packets that may be received after a re-key request has been sent. See, for example, this bug report: "Transfer fails at 1GB: rekey window too small, hard-coded" https://github.com/paramiko/paramiko/issues/49 This patch changes paramiko's behaviour as follows: - Decrease the threshold for starting re-keying from 2**30 to 2**29 bytes. - Decrease the threshold for starting re-keying from 2**30 to 2**29 packets. - Increase the limit of received packets between re-key request & completion from 20 packets to 2**29 packets. - Add a limit of 2**29 received bytes between re-key request & completion. In other words, we re-key more often in order to allow more data to be in-transit during re-keying. NOTE: It looks like Paramiko disables the keep-alive mechanism during re-keying. This patch does not change that behaviour. | |||
2011-05-23 | version 1.7.7.1 | Robey Pointer | |
2011-05-23 | oops. fix potential exception when there's no ssh agent available. | Robey Pointer | |
2011-05-23 | version 1.7.7 | Robey Pointer | |
2011-05-21 | remove the download link since that seems flaky | Robey Pointer | |
2011-05-21 | slight readme cleanup | Robey Pointer | |
2011-05-21 | patch from sugarc0de to call Random.atfork() when starting up, so paramiko ↵ | Robey Pointer | |
can be used in multiprocess code | |||
2011-05-21 | Merge pull request #9 from tehfink/master | Robey Pointer | |
support for openssl keys | |||
2011-05-21 | Merge pull request #8 from garyvdm/master | Robey Pointer | |
Untitled | |||
2011-05-21 | require a newer version of pycrypto and point to the new page | Robey Pointer | |
2011-05-21 | Merge pull request #7 from jelmer/master | Robey Pointer | |
Fix for issue 6: paramiko does not try all available address families | |||
2011-05-21 | Merge remote branch 'netik/master' | Robey Pointer | |
2011-02-01 | patch ssh-agent handling to not leak file descriptors | John Adams | |
2010-11-20 | support for openssl keys ↵ | tehfink | |
(http://www.mail-archive.com/paramiko@lag.net/msg00476.html) | |||
2010-08-03 | Use Crypto.Random rather than Crypto.Util.RandomPool. | Gary van der Merwe | |
2010-05-13 | Try connecting to each available address family until one succeeds. | Andrew Bennetts | |
2010-04-25 | fix spelling of "hierarchical" -- thanks, Thomas Guettler! | Robey Pointer | |
2010-04-25 | ignore the egg-info stuff. | Robey Pointer | |
2010-04-25 | patch from Shad Sharma to raise an exception if the transport isn't active ↵ | Robey Pointer | |
when you try to open a new channel. | |||
2010-04-25 | patch from Michele Bertoldi to allow compression to be turned on in the ↵ | Robey Pointer | |
client constructor. | |||
2010-04-25 | i lost who sent this to me (sorry). patches to fix AIX. | Robey Pointer | |
2010-04-13 | code style and fix test. | Robey Pointer | |
2010-04-13 | brittspace. | Robey Pointer | |
2010-04-13 | Merge remote branch 'larrywright/master' | Robey Pointer | |
2009-12-18 | added functionality to skip verifying the file, which works around sftp ↵ | Larry Wright | |
servers that remove the file immediately after it's been closed. | |||
2009-11-01 | bump to 1.7.6. | Robey Pointer | |
2009-11-01 | brittspace. | Robey Pointer | |
2009-11-01 | bug 426925: lookup host keys correctly when they have a different port. | Robey Pointer | |
2009-11-01 | bug 411910: when asking for a sockaddr, ask for streams only. | Robey Pointer | |
2009-10-31 | bug 413850: patch from patrick mcnerthney. fix race between a server ↵ | Robey Pointer | |
responding to an event and closing the channel. | |||
2009-10-31 | bug 363163: copy the SSHClient AF patch to transport.py too. | Robey Pointer | |
2009-10-31 | ignore more. | Robey Pointer | |