aboutsummaryrefslogtreecommitdiff
path: root/sites
diff options
context:
space:
mode:
authorJeremy T. Bouse <jbouse@debian.org>2014-09-22 20:57:20 -0400
committerJeremy T. Bouse <jbouse@debian.org>2014-09-22 20:57:20 -0400
commit941814e1efaf9a46992476e50badcecbcbfc9a41 (patch)
tree5105110a2b87bcf58340c7fa069220e673d90cc9 /sites
parentccd643cdbd7ba752727d62051058a4454451414d (diff)
downloadpython-paramiko-941814e1efaf9a46992476e50badcecbcbfc9a41.tar
python-paramiko-941814e1efaf9a46992476e50badcecbcbfc9a41.tar.gz
Imported Upstream version 1.15.1upstream/1.15.1
Diffstat (limited to 'sites')
-rw-r--r--sites/docs/api/keys.rst17
-rw-r--r--sites/www/changelog.rst5
2 files changed, 22 insertions, 0 deletions
diff --git a/sites/docs/api/keys.rst b/sites/docs/api/keys.rst
index af7b58c..c6412f7 100644
--- a/sites/docs/api/keys.rst
+++ b/sites/docs/api/keys.rst
@@ -1,6 +1,23 @@
+============
Key handling
============
+Parent key class
+================
+
.. automodule:: paramiko.pkey
+
+DSA (DSS)
+=========
+
.. automodule:: paramiko.dsskey
+
+RSA
+===
+
.. automodule:: paramiko.rsakey
+
+ECDSA
+=====
+
+.. automodule:: paramiko.ecdsakey
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index d0bd481..3e654f6 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,11 @@
Changelog
=========
+* :release:`1.15.1 <2014-09-22>`
+* :bug:`399` SSH agent forwarding (potentially other functionality as
+ well) would hang due to incorrect values passed into the new window size
+ arguments for `.Transport` (thanks to a botched merge). This has been
+ corrected. Thanks to Dylan Thacker-Smith for the report & patch.
* :release:`1.15.0 <2014-09-18>`
* :support:`393` Replace internal use of PyCrypto's ``SHA.new`` with the
stdlib's ``hashlib.sha1``. Thanks to Alex Gaynor.