Home | Trees | Index | Help |
---|
|
paramiko
: Paramiko (a combination of the esperanto words for
"paranoid" and "friend") is a module for python 2.3
or greater that implements the SSH2 protocol for secure (encrypted and
authenticated) connections to remote machines.
auth_transport
: Transport
is a subclass of BaseTransport
that handles
authentication.
channel
: Abstraction for an SSH2 channel.
dsskey
: DSSKey
file
: BufferedFile.
message
: Implementation of an SSH2 "message".
pkey
: Common API for all public keys.
rsakey
: RSAKey
server
: ServerInterface
is an interface to override
for server support.
sftp_attr
sftp_client
: Client-mode SFTP support.
sftp_file
: SFTPFile
sftp_handle
: Abstraction of an SFTP file handle (for server mode).
sftp_server
: Server-mode SFTP support.
sftp_si
: SFTPServerInterface
is an interface to
override for SFTP server support.
ssh_exception
: Exceptions defined by paramiko.
transport
: BaseTransport
handles the core SSH2
protocol.
util
__builtin__.object
:
The most base type
paramiko.file.BufferedFile
:
Reusable base class to implement python-style file buffering around a
simpler stream.
paramiko.channel.ChannelFile
:
A file-like wrapper around Channel
.
paramiko.sftp_file.SFTPFile
:
Proxy object for a file on the remote server, in client mode SFTP.
paramiko.channel.Channel
:
A secure tunnel across an SSH Transport
.
paramiko.message.Message
:
An SSH2 Message is a stream of bytes that encodes some
combination of strings, integers, bools, and infinite-precision integers
(known in python as longs).
paramiko.pkey.PKey
:
Base class for public keys.
paramiko.dsskey.DSSKey
:
Representation of a DSS key which can be used to sign an verify SSH2
data.
paramiko.rsakey.RSAKey
:
Representation of an RSA key which can be used to sign and verify SSH2
data.
paramiko.transport.SecurityOptions
:
Simple object containing the security preferences of an ssh
transport.
paramiko.server.ServerInterface
:
This class defines an interface for controlling the behavior of
paramiko in server mode.
paramiko.sftp_attr.SFTPAttributes
:
Representation of the attributes of a file (or proxied file) for SFTP
in client or server mode.
paramiko.sftp_handle.SFTPHandle
:
Abstract object representing a handle to an open file (or folder) in
an SFTP server implementation.
paramiko.sftp_si.SFTPServerInterface
:
This class defines an interface for controlling the behavior of
paramiko when using the SFTPServer
subsystem to provide an SFTP
server.
__builtin__.type
:
type(object) -> the object's type type(name, bases, dict) -> a
new type
exceptions.Exception
:
Common base class for all exceptions.
paramiko.ssh_exception.SSHException
:
Exception raised by failures in SSH2 protocol negotiation or logic
errors.
paramiko.ssh_exception.BadAuthenticationType
:
Exception raised when an authentication type (like password) is used,
but the server isn't allowing that type.
paramiko.ssh_exception.PartialAuthentication
:
An internal exception thrown in the case of partial
authentication.
paramiko.ssh_exception.PasswordRequiredException
:
Exception raised when a password is needed to unlock a private key
file.
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.0 on Thu Jun 30 20:46:58 2005 | http://epydoc.sf.net |