| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/paramiko-stubs/ |
Upload File : |
from _typeshed import ReadableBuffer
from socket import _RetAddress, socket
from threading import Thread
from typing import Protocol
from paramiko.channel import Channel
from paramiko.message import Message, _LikeBytes
from paramiko.pkey import PKey
from paramiko.transport import Transport
class _AgentProxy(Protocol):
def connect(self) -> None: ...
def close(self) -> None: ...
cSSH2_AGENTC_REQUEST_IDENTITIES: bytes
SSH2_AGENT_IDENTITIES_ANSWER: int
cSSH2_AGENTC_SIGN_REQUEST: bytes
SSH2_AGENT_SIGN_RESPONSE: int
class AgentSSH:
def __init__(self) -> None: ...
def get_keys(self) -> tuple[AgentKey, ...]: ...
class AgentProxyThread(Thread):
def __init__(self, agent: _AgentProxy) -> None: ...
def run(self) -> None: ...
class AgentLocalProxy(AgentProxyThread):
def __init__(self, agent: AgentServerProxy) -> None: ...
def get_connection(self) -> tuple[socket, _RetAddress]: ...
class AgentRemoteProxy(AgentProxyThread):
def __init__(self, agent: AgentClientProxy, chan: Channel) -> None: ...
def get_connection(self) -> tuple[socket, _RetAddress]: ...
class AgentClientProxy:
thread: Thread
def __init__(self, chanRemote: Channel) -> None: ...
def __del__(self) -> None: ...
def connect(self) -> None: ...
def close(self) -> None: ...
class AgentServerProxy(AgentSSH):
thread: Thread
def __init__(self, t: Transport) -> None: ...
def __del__(self) -> None: ...
def connect(self) -> None: ...
def close(self) -> None: ...
def get_env(self) -> dict[str, str]: ...
class AgentRequestHandler:
def __init__(self, chanClient: Channel) -> None: ...
def __del__(self) -> None: ...
def close(self) -> None: ...
class Agent(AgentSSH):
def __init__(self) -> None: ...
def close(self) -> None: ...
class AgentKey(PKey):
agent: AgentSSH
blob: bytes
public_blob: None
name: str
comment: str
def __init__(self, agent: AgentSSH, blob: ReadableBuffer, comment: str = "") -> None: ...
def asbytes(self) -> bytes: ...
def get_name(self) -> str: ...
def sign_ssh_data(self, data: _LikeBytes, algorithm: str | None = None) -> Message: ...