summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2021-02-12Merge branch '2.5' into 2.6Jeff Forcier
2021-02-12Include Cryptography Rust requirement note/links in our install docsJeff Forcier
2020-09-11Merge branch '2.5' into 2.6Jeff Forcier
2020-09-11Fixing syntax for the "note" directiveMark Watts
2020-01-10Merge branch '2.5' into 2.6Jeff Forcier
2020-01-10Last ever LICENSE copyright updateJeff Forcier
Just so it goes out on a cool looking year :D
2020-01-10Last ever LICENSE copyright updateJeff Forcier
Just so it goes out on a cool looking year :D
2019-06-23Mention new setuptools extras in changelogJeff Forcier
2019-06-23Cut 2.6.0Jeff Forcier
2019-06-23Merge branch '2.5'Jeff Forcier
2019-06-23Cut 2.5.1Jeff Forcier
2019-06-23Merge branch '2.4' into 2.5Jeff Forcier
2019-06-23Cut 2.4.3Jeff Forcier
2019-06-21Python 2.7 fix for new exception message workJeff Forcier
2019-06-21Extend new algorithm disabling to compressionsJeff Forcier
2019-06-21Spot check use of new algorithm propertiesJeff Forcier
2019-06-21Rename to disableD_algorithms everywhere for consistencyJeff Forcier
Having it feel verb-y isn't that much better than the alternative, and consistency is a nice hobgoblin
2019-06-21Switch all reads of Transport._preferred_xxx to Transport.preferred_xxxJeff Forcier
2019-06-21Basic impl of algorithm filteringJeff Forcier
Not actually leveraged anywhere yet
2019-06-21Client->Transport for disable_algorithmsJeff Forcier
2019-06-21Old code sucksJeff Forcier
2019-06-21Add docstring and signature support for disable_algorithmsJeff Forcier
2019-06-21DDD changelogJeff Forcier
2019-06-21Merge branch '2.4' into 2.5Jeff Forcier
2019-06-21Merge branch '2.3' into 2.4Jeff Forcier
2019-06-21Merge branch '2.5'Jeff Forcier
2019-06-21Merge branch '2.2' into 2.3Jeff Forcier
2019-06-21GSSAPI related kwargs were never docstring-documented -_-Jeff Forcier
2019-06-21Merge branch '2.4' into 2.5Jeff Forcier
2019-06-21Merge branch '2.3' into 2.4Jeff Forcier
2019-06-21Merge branch '2.5'Jeff Forcier
2019-06-21Merge branch '2.2' into 2.3Jeff Forcier
2019-06-21BlackenJeff Forcier
2019-06-21Merge branch '2.5'Jeff Forcier
2019-06-21Merge branch '2.4' into 2.5Jeff Forcier
2019-06-21Merge branch '2.3' into 2.4Jeff Forcier
2019-06-21Merge branch '2.2' into 2.3Jeff Forcier
2019-06-21Add new keys and tests proving #1306Jeff Forcier
2019-06-21Changelog re #1306Jeff Forcier
2019-06-21fix ed25519 ssh key unpad() when padding not present (not needed)Pierce Lopez
fixes #1306
2019-06-21Enhancements to #1460Jeff Forcier
- Modern style string formatting please - Make more sensible use of object attributes, where it can be done backwards incompatibly - Gussy up the string output to my personal taste - Add tests
2019-06-21Changelog re #1460, re #1440Jeff Forcier
2019-06-21clean up SSHException subclass args and string methodsPierce Lopez
Setting "self.args" is equivalent to calling the parent class __init__() method with those args, and also overrides the only thing that parent class __init__() method did. It is confused. What is actually desired is to override the __str__() method with a custom formatted exception message. The default for Exception with zero args is blank, with one arg is the str of that arg, with multiple args is just the repr of the args tuple. (That never includes the class name. So, we want custom str.)
2019-06-21flake8Jeff Forcier
2019-06-21Merge branch 'master' into 1311-intJeff Forcier
2019-06-21Use setuptools extras_require to offer paramiko[gssapi]Jeff Forcier
2019-06-21As @ploxiln notes, pyasn1 is needed for both platform familiesJeff Forcier
2019-06-21Merge pull request #1461 from akruis/1311-int-akruisJeff Forcier
Minor dokumentation updates
2019-06-20Mention how to test Kerberos/GSSAPI.Anselm Kruis
2019-06-20Fix required package versions for gssapi and pyasn1.Anselm Kruis
Kerberos/GSSAPI has been tested with gssapi 1.4.1. Newer versions are probably OK. If older versions work, is unknown. The pyasn1 version had transposed digits.