summaryrefslogtreecommitdiff
path: root/paramiko/kex_gex.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2004-01-04 10:33:05 +0000
committerRobey Pointer <robey@lag.net>2004-01-04 10:33:05 +0000
commit35ed1035727647c0a1443a147971dc5749e6fc2b (patch)
tree1a1a9f63f22a03a0c9fad6133946e20c14da4848 /paramiko/kex_gex.py
parent02322f6621c40d86cf5b14020fde04a6e7abc316 (diff)
downloadparamiko-35ed1035727647c0a1443a147971dc5749e6fc2b.tar.gz
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-23]
quick doc fix. fix broken cross-link in kex_gex docs.
Diffstat (limited to 'paramiko/kex_gex.py')
-rw-r--r--paramiko/kex_gex.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/paramiko/kex_gex.py b/paramiko/kex_gex.py
index faa8cb30..a83c84b7 100644
--- a/paramiko/kex_gex.py
+++ b/paramiko/kex_gex.py
@@ -19,9 +19,9 @@
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
"""
-Variant on L{KexGroup1} where the prime "p" and generator "g" are provided by
-the server. A bit more work is required on the client side, and a U{lot} more
-on the server side.
+Variant on L{KexGroup1 <paramiko.kex_group1.KexGroup1>} where the prime "p" and
+generator "g" are provided by the server. A bit more work is required on the
+client side, and a B{lot} more on the server side.
"""
from message import Message
@@ -35,7 +35,7 @@ from logging import DEBUG
_MSG_KEXDH_GEX_GROUP, _MSG_KEXDH_GEX_INIT, _MSG_KEXDH_GEX_REPLY, _MSG_KEXDH_GEX_REQUEST = range(31, 35)
-class KexGex(object):
+class KexGex (object):
name = 'diffie-hellman-group-exchange-sha1'
min_bits = 1024