summaryrefslogtreecommitdiffhomepage
path: root/secsh.py
blob: 526a9660fd1ae483d249bd6781074eb2b8dc454f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python

import sys

if (sys.version_info[0] < 2) or ((sys.version_info[0] == 2) and (sys.version_info[1] < 3)):
    raise RuntimeError('You need python 2.3 for this module.')

class SecshException(Exception):
    pass


from auth_transport import Transport
from channel import Channel
from rsakey import RSAKey
from dsskey import DSSKey


__author__ = "Robey Pointer <robey@lag.net>"
__date__ = "9 Nov 2003"
__version__ = "0.1-charmander"
__credits__ = "Huzzah!"