summaryrefslogtreecommitdiff
path: root/demos
Commit message (Collapse)AuthorAgeFilesLines
* Fix Free Software Foundation addressPaul Howarth2022-03-158-8/+8
| | | | They moved from Temple Place to Franklin Street in 2005.
* Bump black up to 18.6b4Jeff Forcier2018-08-221-1/+0
|
* Blacken under black 18.5b0Jeff Forcier2018-05-298-277/+494
|
* Invent the parameter 'gss_trust_dns' for Kerberos supportAnselm Kruis2017-09-131-2/+0
| | | | | | | | | | | | In response to Paramiko issue #915 the parameter 'gss_trust_dns' was added for Kerberos support. Set by default to 'True' the parameter indicates whether or not the DNS is trusted to securely canonicalize the hostname of the target host. If set to 'False' the hostname entered will be passed to GSSAPI. This option behaves like GSSAPITrustDNS from OpenSSH. Also, the parameter 'gss_host' is now always set, regardless if GSSAPI is used or not. Further, a minor fix was required to make the SFTP test work again.
* demo_simple: gss_auth and gss_kex are independent of each other.Anselm Kruis2017-09-121-4/+7
|
* Remove unused value from demo/test.Jeff Forcier2017-06-011-3/+1
| | | | Honestly not sure WTF
* This previous tweak was overzealous.Jeff Forcier2017-05-312-2/+2
| | | | These backslashes are OK!
* More death to line continuationsJeff Forcier2017-05-312-2/+2
|
* Update demo_server.pyAlan Yee2016-12-051-1/+1
| | | Updating base64 code in comments
* 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.
* Fix outdated reference syntax in a demoJeff Forcier2014-09-081-9/+12
|
* Not sure why this variable was changed, but caps are Bad.Jeff Forcier2014-09-081-5/+5
|
* Merge branch 'master' into gssapi-py3-supportSebastian Deiss2014-03-261-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .gitignore README demos/demo_simple.py dev-requirements.txt paramiko/__init__.py paramiko/_winapi.py paramiko/agent.py paramiko/auth_handler.py paramiko/ber.py paramiko/buffered_pipe.py paramiko/channel.py paramiko/client.py paramiko/common.py paramiko/dsskey.py paramiko/ecdsakey.py paramiko/file.py paramiko/hostkeys.py paramiko/kex_gex.py paramiko/kex_group1.py paramiko/message.py paramiko/packet.py paramiko/pkey.py paramiko/primes.py paramiko/proxy.py paramiko/py3compat.py paramiko/server.py paramiko/sftp_client.py paramiko/transport.py paramiko/util.py paramiko/win_pageant.py setup.py sites/shared_conf.py sites/www/changelog.rst sites/www/conf.py sites/www/index.rst sites/www/installing.rst test.py tests/loop.py tests/stub_sftp.py tests/test_auth.py tests/test_client.py tests/test_file.py tests/test_hostkeys.py tests/test_kex.py tests/test_message.py tests/test_packetizer.py tests/test_pkey.py tests/test_sftp.py tests/test_sftp_big.py tests/test_transport.py tests/test_util.py
| * Remove byte conversions and unhexlify calls that we only needed for Py2.5 ↵Scott Maxwell2013-11-191-4/+4
| | | | | | | | support and use the `b` byte string marker instead
| * Remove `from __future__ import with_statement`Scott Maxwell2013-11-192-3/+0
| |
| * Use 'with' for opening most file and SFTPFIle objectsScott Maxwell2013-11-191-1/+2
| |
| * Use 'with' for opening most file and SFTPFIle objectsScott Maxwell2013-11-191-1/+2
| |
| * Change all exceptions to modern format (not Py2.5 compatible)Scott Maxwell2013-11-196-22/+11
| |
| * Fix some deprecation and resource warningsScott Maxwell2013-11-022-4/+8
| |
| * Fix demosScott Maxwell2013-10-315-33/+48
| |
| * Fix demo_serverScott Maxwell2013-10-311-20/+24
| |
| * Fix demo_keygenScott Maxwell2013-10-311-11/+11
| |
| * More type conversionScott Maxwell2013-10-311-1/+2
| |
| * Fix inputScott Maxwell2013-10-301-7/+7
| |
| * Fix importsScott Maxwell2013-10-301-1/+4
| |
| * Fix print statementsScott Maxwell2013-10-302-18/+19
| |
* | Improved handling of failed GSS-API authentication attemptsSebastian Deiss2014-02-171-4/+8
| | | | | | | | | | | | Previously an attribute error occurred or a SSHException was thrown if the GSS-API authentication failed. If GSS-API authentication fails now or the remote host does not support GSS-API, paramiko tries other authentication methods.
* | GSS-API / SSPI authenticated Diffie-Hellman Key Exchange and userSebastian Deiss2014-02-113-11/+64
| | | | | | | | | | | | | | 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.
* | Merge branch scottkmaxwell:py3-support-without-py25 intoSebastian Deiss2014-02-118-97/+113
|/ | | SebastianDeiss:gssapi-py3-support
* Merge branch '1.9' into 1.10Jeff Forcier2013-09-278-8/+8
|\
| * Fixed a typo in the license header of most filesJeff Forcier2013-09-278-8/+8
| | | | | | | | | | Conflicts: paramiko/proxy.py
| * Fix demo re #200Jeff Forcier2013-09-271-1/+1
| |
* | Merge branch '1.9' into 1.10Jeff Forcier2013-09-271-1/+1
|\ \
| * | Fix demo re #200Jeff Forcier2013-09-271-1/+1
| |/
* | Merge branch '1.10' into 168-intJeff Forcier2013-09-201-1/+3
|\ \ | | | | | | | | | | | | | | | Conflicts: NEWS setup.py
| * | This fixes a Bad file descriptor error caused by attempting to access the ↵Jonathan Halcrow2013-09-201-1/+3
| |/ | | | | | | request after it has already been closed.
* | Update demo.pyIvan Barria2013-04-091-1/+0
|/ | | why import threading?
* Fix trailing whitespace re #28Jeff Forcier2012-07-041-3/+3
|
* add priv/pub key generator demoSofian Brabez2012-07-041-0/+127
|
* fix my email address to be the current one.Robey Pointer2009-07-197-7/+7
|
* simplify the "simple" demo.Robey Pointer2009-07-191-27/+10
|
* [project @ robey@lag.net-20080220060035-yi82h5kc7jod5hlu]Robey Pointer2008-02-191-0/+167
| | | | add a demo for reverse port forwarding.
* [project @ robey@lag.net-20080220055849-xmjvp8m0lqyz4cf1]Robey Pointer2008-02-191-5/+4
| | | | change -l to -p for consistency
* [project @ robey@lag.net-20080219075127-fx3aq6ijgm38oxy6]Robey Pointer2008-02-181-122/+80
| | | | cleaned up "forward" example.
* [project @ robey@lag.net-20080218003236-d2zgw43ys7xrccdx]Robey Pointer2008-02-172-0/+2
| | | | explain why we check ~/ssh/ in the demos
* [project @ robey@lag.net-20070213192109-axy7gl61x7w0cpbp]Robey Pointer2007-02-131-0/+4
| | | | add get/put to the sftp demo
* [project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer2007-02-136-6/+6
| | | | bump copyright year to 2007
* [project @ robey@lag.net-20060801182053-a74d120228b8009a]Robey Pointer2006-08-012-3/+5
| | | | use hexlify instead of custom-made hexify in demos
* [project @ robey@lag.net-20060723204116-319c388eacb937d6]Robey Pointer2006-07-232-3/+3
| | | | fix SSHException references in demos
* [project @ robey@lag.net-20060430024043-e4391438febc9bf2]Robey Pointer2006-04-291-0/+4
| | | | check for None channel and display error