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
message
: Implementation of an SSH2 "message".
pkey
: Common API for all public keys.
rsakey
: RSAKey
sftp
ssh_exception
: Exceptions defined by paramiko.
transport
: BaseTransport
handles the core SSH2
protocol.
util
ber
common
: Common constants and global variables.
file
: BufferedFile.
kex_gex
: Variant on KexGroup1
where the prime "p" and
generator "g" are provided by the server.
kex_group1
: Standard SSH key exchange ("kex" if you wanna sound
cool).
logging22
: Stub out logging on python < 2.3.
primes
: Utility functions for dealing with primes.
__builtin__.object
:
The most base type
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.sftp.SFTP
paramiko.sftp.SFTPAttributes
__builtin__.type
:
type(object) -> the object's type type(name, bases, dict) -> a
new type
threading._Verbose
threading.Thread
paramiko.transport.BaseTransport
:
Handles protocol negotiation, key exchange, encryption, and the
creation of channels across an SSH session.
paramiko.auth_transport.Transport
:
An SSH Transport attaches to a stream (usually a socket), negotiates
an encrypted session, authenticates, and then creates stream tunnels,
called Channel
s, across the session.
paramiko.ber.BER
:
Robey's tiny little attempt at a BER decoder.
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.SFTPFile
paramiko.logging22.Formatter
paramiko.kex_gex.KexGex
paramiko.kex_group1.KexGroup1
paramiko.logging22.logger
paramiko.primes.ModulusPack
:
convenience object for holding the contents of the /etc/ssh/moduli
file, on systems that have such a file.
paramiko.logging22.StreamHandler
exceptions.Exception
:
Common base class for all exceptions.
paramiko.sftp.SFTPError
paramiko.ssh_exception.SSHException
:
Exception thrown by failures in SSH2 protocol negotiation or logic
errors.
paramiko.ssh_exception.PasswordRequiredException
:
Exception thrown when a password is needed to unlock a private key
file.
paramiko.ber.BERException
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Fri Apr 23 15:55:51 2004 | http://epydoc.sf.net |