Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-17 | Blacken, 2.2 edition | Jeff Forcier | |
2018-09-17 | Test-level fixes for pytest & friends, 2.2 edition | Jeff Forcier | |
2018-09-17 | Missed a spot | Jeff Forcier | |
2018-09-17 | Merge branch '2.1' into 2.2 | Jeff Forcier | |
Foregoes a handful of unblackened bits to make the merge easier; will blacken next anyways | |||
2018-09-17 | One change overlooked by merge, as it's new | Jeff Forcier | |
2018-09-17 | Blacken 2.1 branch | Jeff Forcier | |
2018-09-17 | Merge branch '2.0' into 2.1 | Jeff Forcier | |
2018-09-17 | Throwing a bone to 2.0-2.3 python-2.6 support | Jeff Forcier | |
2018-09-17 | Blacken 2.0 with black 18.6b4 | Jeff Forcier | |
2018-09-17 | Mark known slow tests as 'slow' pytest marker, and skip them by default | Jeff Forcier | |
2018-09-17 | Import cleanup, mostly focused on s/tests/./ | Jeff Forcier | |
2018-09-17 | Rename util func that trips pytest's default discovery. | Jeff Forcier | |
Wouldn't matter as much under pytest-relaxed discovery, but, eh | |||
2017-08-04 | Merge branch '2.1-gsskex-hostkeycheck-fix' into 2.2-gsskex-hostkeycheck-fix | Anselm Kruis | |
2017-08-04 | Merge branch '2.0-gsskex-hostkeycheck-fix' into 2.1-gsskex-hostkeycheck-fix | Anselm Kruis | |
2017-08-04 | SSHClient: fix the host key test | Anselm Kruis | |
Skip the host key check only, if the transport actually used gssapi-keyex. Add tests for the missing-host-key RejectPolicy. Before this change, a man-in-the-middle attack on the paramiko ssh client with gss_kex=True was possible by having a server that does not support gssapi-keyex and gives any or no host key. | |||
2017-06-09 | Merge branch '2.1' | Jeff Forcier | |
2017-06-09 | Merge branch '2.1' into 910-int | Jeff Forcier | |
2017-06-09 | Merge branch '2.0' into 2.1 | Jeff Forcier | |
2017-06-09 | Flake8/etc tweaks re #971 in 2.x | Jeff Forcier | |
2017-06-09 | Import from py3compat directly in test_client | Martin Packman | |
2017-06-09 | Merge branch '2.1' | Jeff Forcier | |
2017-06-09 | Merge branch '2.0' into 2.1 | Jeff Forcier | |
2017-06-07 | tests for host key negotiation when there are multiple | Pierce Lopez | |
2017-06-07 | cleanup/simplify auth_timeout tests | Pierce Lopez | |
2017-06-06 | Merge branch 'master' into 869-int | Jeff Forcier | |
2017-06-06 | Failing test proving need for #857 | Jeff Forcier | |
2017-06-03 | Fixed encoding/decoding of the public key on the wire | Alex Gaynor | |
Public point was accidentally encoded as 32 bytes, with no length prefix. | |||
2017-06-03 | integration test, with ourselves | Alex Gaynor | |
2017-06-02 | re-enable client cleanup test for python3 | Pierce Lopez | |
2017-01-24 | Merge branch '2.0' into 2.1 | Jeff Forcier | |
2017-01-24 | untie agian! | james mike dupont | |
2016-12-23 | Added a test to check that the auth_timeout argument is passed through and ↵ | Tim Savage | |
applied. | |||
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-11-30 | Merge branch 'master' into 398-int | Jeff Forcier | |
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 | |