summaryrefslogtreecommitdiff
path: root/tests/test_kex_gss.py
Commit message (Collapse)AuthorAgeFilesLines
* s/%/fstrings/gJeff Forcier2023-01-161-1/+1
| | | | Except in one spot where it was too complicated to bother for now XD
* Fix Free Software Foundation addressPaul Howarth2022-03-151-1/+1
| | | | They moved from Temple Place to Franklin Street in 2005.
* flake8Jeff Forcier2019-06-211-1/+2
|
* Merge branch 'master' into 1311-intJeff Forcier2019-06-211-2/+2
|\
| * Clean up shitty old test names of form test_[9-0A-Z]+_.*Jeff Forcier2019-06-081-2/+2
| |
* | Update a commentAnselm Kruis2018-10-081-1/+1
| |
* | fix GSSAPI tests for Python3 (trivial)Anselm Kruis2018-10-061-1/+1
| |
* | Use k5test (if available) to execute GSSAPI related testsAnselm Kruis2018-10-051-12/+8
|/ | | | | | | | | | | | | Previously testing of GSSAPI (Kerberos) related functions required an externally provided Kerberos environment. Therefore all GSSAPI tests were skipped. Now the package k5test is used to setup a self-contained Kerberos environment. Because k5test requires the new GSSAPI, this commit also merges pull request #1166 and fixes broken GSSAPI test. If k5test is not available (i.e. on Windows), the tests still get skipped. The test case test_kex_gss.test_2_gsskex_and_auth_rekey is expected to fail.
* Bump black up to 18.6b4Jeff Forcier2018-08-221-2/+0
|
* Blacken Paramiko on 2.4Chris Rose2018-05-171-20/+28
|
* Was missing another needs_gssapiJeff Forcier2017-10-231-0/+3
|
* Fix rekeying with GSS-API key exchangeSebastian Deiss2017-09-181-2/+19
| | | | | | | | When GSS-API key exchange is used a rekey caused a GSS-API MIC failure and closed the transport. This happened because the MIC of the transport session ID (H of the initial kex) was checked against the MIC of the new H created during rekey.
* Use modern api to check if event is set.Olle Lundberg2014-12-171-1/+1
| | | | | Since we are a python2.6+ code base now, we want to be as forward compatible as possible.
* Converted all staticmethod/classmethod instances to decorators.Jacob Beck2014-10-141-3/+1
|
* Use keyword arguments for arguments when creating a Transport.Dylan Thacker-Smith2014-09-221-1/+1
| | | | Fixes #399
* Clean up more of the unnecessary-IMHO headersJeff Forcier2014-09-081-10/+0
|
* GSS-API / SSPI authenticated Diffie-Hellman Key Exchange and userSebastian Deiss2014-02-111-0/+143
authentication with Python 3 support Add Python 3 support for the GSS-API / SSPI authenticated Diffie-Hellman Key Exchange and user authentication. This patch supersedes pull request #250.