Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-24 | untie agian! | james mike dupont | |
2016-12-12 | Remove code re #398 from 2.0 branch, as it's feature work | Jeff Forcier | |
2016-12-05 | Merge branch '1.18' into 2.0 | Jeff Forcier | |
2016-12-05 | Support transmission of environment variables | Philip Lorenz | |
The SSH protocol allows the client to transmit environment variables to the server. This is particularly useful if the user wants to modify the environment of an executed command without having to reexecute the actual command from a shell. This patch extends the Client and Channel interface to allow the transmission of environment variables to the server side. In order to use this feature the SSH server must accept environment variables from the client (e.g. the AcceptEnv configuration directive of OpenSSH). FROM BITPROPHET: backport cherry-pick to 1.x line | |||
2016-04-25 | Add support for ECDSA key sizes 384 and 521 alongside the existing 256. | Alex Orange | |
Previously only 256-bit was handled and in certain cases (private key reading) 384- and 521-bit keys were treated as 256-bit keys causing silent errors. Tests have been added to specifically test the 384 and 521 keysizes. As RFC 5656 defines 256, 384, and 521 as the required keysizes this seems a good set to test. Also, this will cover the branches at ecdsakey.py:55. Test keys were renamed and test_client.py was modified as a result. This also fixes two bugs in ecdsakey.py. First, when calculating bytes needed to store a key, the assumption was made that the key size (in bits) was divisible by 8 (see line 137). This has been fixed by rounding up (wasn't an issue as only 256-bit keys were used before). Another bug was that the key padding in asbytes was being done backwards (was padding on current_length - needed_length bytes). | |||
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 | 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 | |||
2015-12-04 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
2015-11-06 | Hacky cleanup of non-gc'd clients in a loopy test. | Jeff Forcier | |
Re #612 | |||
2015-11-04 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
Conflicts: .travis.yml paramiko/ecdsakey.py paramiko/transport.py | |||
2015-11-03 | Merge branch 'master' into 502-int | Jeff Forcier | |
2015-03-20 | Commit 838e02ab42 changed the type of the exec command string on python3 | Anselm Kruis | |
from unicode to bytes. This commit adapts the test suite accordingly. | |||
2014-12-18 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
Conflicts: paramiko/ecdsakey.py paramiko/util.py | |||
2014-12-17 | Use modern api to check if event is set. | Olle Lundberg | |
Since we are a python2.6+ code base now, we want to be as forward compatible as possible. | |||
2014-10-01 | Skip the tests on PyPy | Alex Gaynor | |
2014-09-30 | 2 is really enough | Alex Gaynor | |
2014-09-30 | Try removing some unused code? | Alex Gaynor | |
2014-09-29 | try with one more GC, just to see if it reproduces | Alex Gaynor | |
2014-09-18 | Merge branch 'master' into switch-to-cryptography | Alex Gaynor | |
Conflicts: paramiko/ecdsakey.py tests/test_client.py | |||
2014-09-16 | Added a comment; used a keyword argument, added pypy to travis | Alex Gaynor | |
2014-09-15 | Switched everything to use cryptography | Alex Gaynor | |
2014-09-10 | Merge branch 'master' into 216-int | Jeff Forcier | |
Conflicts: paramiko/transport.py paramiko/util.py tests/test_client.py | |||
2014-09-08 | Merge branch 'master' into 362-int | Jeff Forcier | |
Conflicts: tests/test_client.py | |||
2014-09-08 | Merge branch 'master' into 373-int | Jeff Forcier | |
Conflicts: paramiko/channel.py | |||
2014-09-07 | Convert SSHClient into a context manager | Michael Williamson | |
2014-09-06 | Bah humbug | Jeff Forcier | |
2014-09-05 | Yup, that was indeed too fucking clever. Bad bitprophet! | Jeff Forcier | |
2014-09-05 | Fix a Python 3 encoding dealie | Jeff Forcier | |
2014-09-05 | Forgot to actually implement allowed-keys/reverse testing | Jeff Forcier | |
2014-09-05 | Add a couple more permutations | Jeff Forcier | |
2014-09-05 | Overhaul multi-key test to set up multiple scenarios | Jeff Forcier | |
2014-09-05 | Factor fingerprint data out of class | Jeff Forcier | |
2014-09-05 | More cleanup to support ECDSA key, and now it works! | Jeff Forcier | |
2014-09-05 | Add RSA key fingerprint, now that test passes | Jeff Forcier | |
2014-09-05 | Set things up for cleaner test key tomfoolery | Jeff Forcier | |
2014-09-05 | Add an explicit RSA test, which fails (!) | Jeff Forcier | |
2014-09-05 | Refactor horrible old copypasta | Jeff Forcier | |
2014-09-05 | Add a (failing :() test re: ECDSA private keys | Jeff Forcier | |
Re #218 | |||
2014-08-15 | Document what is breaking in the client tests. | Olle Lundberg | |
2014-08-14 | Use a shorter timeout in banner timeout test. | Cory Benfield | |
2014-08-14 | Test banner timeout. | Cory Benfield | |
2014-03-07 | Fix import * and a bunch of PEP8 formatting | Scott Maxwell | |
2014-03-07 | Skip failing test on Py3 | Jeff Forcier | |
2014-01-16 | Fix new test for Py3 and start server in tests instead of in setUp so we can ↵ | Scott Maxwell | |
skip starting server for test 5 | |||
2014-01-16 | Merge remote-tracking branch 'master/master' into py3-support-without-py25 | Scott Maxwell | |
Conflicts: paramiko/__init__.py setup.py tests/test_client.py | |||
2014-01-08 | Saner (to me) positive assertion | Jeff Forcier | |
2014-01-08 | Small refactor | Jeff Forcier | |
2014-01-08 | No need for 'self.tc' within a single test :) | Jeff Forcier | |
2014-01-08 | Add a testcase for client.save_host_keys. | Martin Blumenstingl | |