paramiko.agent.AgentClientProxy:
Class proxying request as a client:
-> client ask for a request_forward_agent()
-> server creates a proxy and a fake SSH Agent
-> server ask for establishing a connection when needed,
calling the forward_agent_handler at client side.
paramiko.SFTPFile:
Proxy object for a file on the remote server, in client mode SFTP.
paramiko.buffered_pipe.BufferedPipe:
A buffer that obeys normal read (with timeout) & close
semantics for a file or socket, but is fed data from another
thread.
paramiko.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.MissingHostKeyPolicy:
Interface for defining the policy that SSHClient
should use when the SSH server's hostname is not in either the
system host keys or the application's keys.
paramiko.AutoAddPolicy:
Policy for automatically adding the hostname and new host key to
the local HostKeys object, and saving it.
paramiko.RejectPolicy:
Policy for automatically rejecting the unknown hostname & key.
paramiko.WarningPolicy:
Policy for logging a python-style warning for an unknown host key,
but accepting it.
paramiko.primes.ModulusPack:
convenience object for holding the contents of the /etc/ssh/moduli
file, on systems that have such a file.
paramiko.DSSKey:
Representation of a DSS key which can be used to sign an verify
SSH2 data.
paramiko.RSAKey:
Representation of an RSA key which can be used to sign and verify
SSH2 data.
paramiko.win_pageant.PageantConnection:
Mock "connection" to an agent which roughly approximates
the behavior of a unix local-domain socket (as used by Agent).
paramiko.SFTPAttributes:
Representation of the attributes of a file (or proxied file) for
SFTP in client or server mode.
paramiko.SFTPHandle:
Abstract object representing a handle to an open file (or folder)
in an SFTP server implementation.
paramiko.SFTPServerInterface:
This class defines an interface for controlling the behavior of
paramiko when using the SFTPServer subsystem to provide an SFTP server.
paramiko.SSHClient:
A high-level representation of a session with an SSH server.
paramiko.SSHConfig:
Representation of config information as stored in the format used
by OpenSSH.
paramiko.SecurityOptions:
Simple object containing the security preferences of an ssh
transport.
paramiko.ServerInterface:
This class defines an interface for controlling the behavior of
paramiko in server mode.
paramiko.agent.AgentLocalProxy:
Class to be used when wanting to ask a local SSH Agent being asked
from a remote fake agent (so use a unix socket for ex.)
paramiko.Transport:
An SSH Transport attaches to a stream (usually a socket),
negotiates an encrypted session, authenticates, and then creates
stream tunnels, called Channels, across the session.