summaryrefslogtreecommitdiffhomepage
path: root/paramiko.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2003-12-24 20:49:38 +0000
committerRobey Pointer <robey@lag.net>2003-12-24 20:49:38 +0000
commit02319afd5ac24ebeed0d4f671179128c4fc39596 (patch)
tree117f99db047e245e72319d655e9f07a1fb49bfc9 /paramiko.py
parente7715095b649fd9582de4dff9930d9ee42013a6e (diff)
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-12]
fix dss key signing (expanded on a patch from fred gansevles) add a demo dss key for server mode, and fix some bugs that had caused the dss signing stuff to never work before. the demo_server is a bit more verbose now, too. both key types (RSAKey & DSSKey) now have a function to return the fingerprint of the key, and both versions of read_private_key_file() now raise exceptions on failure, instead of just silently setting "valid" to false.
Diffstat (limited to 'paramiko.py')
-rw-r--r--paramiko.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/paramiko.py b/paramiko.py
index 2b18981e..cc5fbfaa 100644
--- a/paramiko.py
+++ b/paramiko.py
@@ -14,6 +14,8 @@ from channel import Channel
from rsakey import RSAKey
from dsskey import DSSKey
+from util import hexify
+
__author__ = "Robey Pointer <robey@lag.net>"
__date__ = "10 Nov 2003"