summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@master-shake.local>2006-02-03 10:08:29 -0800
committerRobey Pointer <robey@master-shake.local>2006-02-03 10:08:29 -0800
commit2853a7ae0548cf898f0acebe3e7df7ceb92a0025 (patch)
tree7a31dc557d94b702ddb6815414d5b33f617d15e5
parent0627f094945d0ec3c90edea24d6ff38ffade2d21 (diff)
[project @ robey@master-shake.local-20060203180829-27d4707bf572ac5b]
Transport doesn't need HMAC
-rw-r--r--paramiko/transport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index cfaeffdc..d646b5a4 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -51,7 +51,7 @@ from paramiko.ssh_exception import SSHException, BadAuthenticationType
# PyCrypt compiled for Win32 can be downloaded from the HashTar homepage:
# http://nitace.bsd.uchicago.edu:8080/hashtar
from Crypto.Cipher import Blowfish, AES, DES3
-from Crypto.Hash import SHA, MD5, HMAC
+from Crypto.Hash import SHA, MD5
# for thread cleanup