24 lines
488 B
Python
24 lines
488 B
Python
#!/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.')
|
|
|
|
# FIXME rename
|
|
class SSHException(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__ = "18 Sep 2003"
|
|
__version__ = "0.1-bulbasaur"
|
|
__credits__ = "Huzzah!"
|
|
|