summaryrefslogtreecommitdiff
path: root/paramiko/ssh_gss.py
Commit message (Collapse)AuthorAgeFilesLines
* No more (object)ionsJeff Forcier2023-01-161-1/+1
|
* Fix Free Software Foundation addressPaul Howarth2022-03-151-1/+1
| | | | They moved from Temple Place to Franklin Street in 2005.
* Newer flake8 for Python 3.8 CI compat, and related tweaksJeff Forcier2020-08-301-1/+1
|
* Simplify version guard in GSSAPI code, and bump dev version while we're at itJeff Forcier2019-05-311-1/+1
|
* flake8 caught that this internal import was missingJeff Forcier2019-05-311-0/+2
| | | | | Worries me that it was not caught by the implementer though, doesn't that mean this method was not called by their testing?
* Merge branch 'master' into 1311-intJeff Forcier2019-05-311-4/+9
|\
| * Some master-only blackenings for 18.5b0Jeff Forcier2018-05-291-2/+4
| |
| * Merge branch '2.4'Jeff Forcier2018-05-291-48/+66
| |\
| * | Make pyasn1 a truly optional dependencyJeff Forcier2018-04-191-2/+5
| | | | | | | | | | | | Re: #1191
* | | Reformatted as proposed by travis.blackenAnselm Kruis2018-10-051-29/+45
| | |
* | | Fix Sphinx and PEP 8 warningsAnselm Kruis2018-09-191-18/+15
| | |
* | | Add compatibility with new "gssapi" packageTanja Huthmacher2018-09-191-13/+192
| |/ |/| | | | | | | Detect if "python-gssapi" or "gssapi" is installed at import time and use the appropriate API
* | Blacken under black 18.5b0Jeff Forcier2018-05-291-3/+2
| |
* | Blacken Paramiko on 2.4Chris Rose2018-05-171-47/+66
|/
* Use new(er)-style string formatting, {} instead of {0}Jeff Forcier2017-10-101-1/+1
|
* This looks like it SHOULD HAVE said {0} previously.Jeff Forcier2017-10-101-1/+1
|
* Pep8 and Sphinx fixes.Anselm Kruis2017-09-121-14/+9
|
* Added paramiko.GSS_EXCEPTIONS: exception types used by GSSAPIAnselm Kruis2017-08-041-5/+16
| | | | | This new constant is a tuple of the exception types used by the underlying GSSAPI/SSPI implementation.
* Move to 'inv sites' style doc nitpicking.Jeff Forcier2017-06-051-28/+15
| | | | | | | Existing just-warnings setup was old and not as rigorous as my usual. Required a lot of stupid little changes, but now same tooling for all projects, toot toot.
* Even moar parentheses over backslashesJeff Forcier2017-05-311-5/+11
|
* More flake8 fixes.Dorian Pula2017-05-311-8/+5
|
* Lots of flake8 fix.Dorian Pula2017-05-311-13/+14
|
* Merge branch 'master' into switch-to-cryptographyAlex Gaynor2015-11-041-20/+11
|\ | | | | | | | | | | | | Conflicts: .travis.yml paramiko/ecdsakey.py paramiko/transport.py
| * Fix the documentation of both implementations of ssh_check_mic.Anselm Kruis2015-03-031-20/+11
| | | | | | | | The method raises an exception, if the check fails and has no return value.
* | Merge branch 'master' into switch-to-cryptographyAlex Gaynor2015-03-151-1/+1
|\ \ | |/
| * Replace/add RFC links using ``:rfc:``, /ht @sigmavirus24Jeff Forcier2015-02-281-1/+1
| |
* | Document that pyasn1 is requiredAlex Gaynor2014-09-181-16/+2
|/
* Consistency plsJeff Forcier2014-09-081-4/+4
|
* Versionadded for the new modulesJeff Forcier2014-09-081-0/+2
|
* Nuke extraneous 'for Paramiko' now that it's inside usJeff Forcier2014-09-081-1/+1
|
* Reinstate working seealso'sJeff Forcier2014-09-081-0/+2
|
* Tighten up module docstrings of GSSAPI API files.Jeff Forcier2014-09-081-21/+4
| | | | | | * We don't use this style of header anywhere else * Links to the original author's website/links aren't going to help; users rarely observe such info in practice :( * The core info (credit, authorship, license) is retained elsewhere, either in this file, the changelog, or Git history
* Don't check for the qop value at MIC verificationSebastian Deiss2014-07-141-5/+7
|
* Don't raise if libgssapi_krb5.so is unavailableAnselm Kruis2014-04-071-1/+1
| | | This change fixes a paramiko crash in case the package 'gssapi' is installed but can't load libgssapi_krb5.so.
* Change GSS-API epydoc docstrings to SphinxSebastian Deiss2014-03-271-170/+125
|
* Adapt GSS-API implementation to the merged code.Sebastian Deiss2014-03-261-3/+7
|
* Add a flag to check if GSS-API / SSPI is available.Sebastian Deiss2014-03-171-1/+11
|
* Improve Exception handlingSebastian Deiss2014-02-181-13/+23
| | | | | If an GSS-API / SSPI error occurs you get a status code and an error message, but you may also want the name of the remote host. That's what this patch adds.
* GSS-API / SSPI authenticated Diffie-Hellman Key Exchange and userSebastian Deiss2014-02-111-0/+619
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.