| 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 re import Pattern
from typing import IO, TypeVar
from typing_extensions import Self
from paramiko.message import Message
OPENSSH_AUTH_MAGIC: bytes
_BytesT = TypeVar("_BytesT", bound=bytes | bytearray)
def _unpad_openssh(data: _BytesT) -> _BytesT: ...
class PKey:
public_blob: PublicBlob | None
BEGIN_TAG: Pattern[str]
END_TAG: Pattern[str]
def __init__(self, msg: Message | None = None, data: str | None = None) -> None: ...
def asbytes(self) -> bytes: ...
def __bytes__(self) -> bytes: ...
def __eq__(self, other: object) -> bool: ...
def get_name(self) -> str: ...
def get_bits(self) -> int: ...
def can_sign(self) -> bool: ...
def get_fingerprint(self) -> bytes: ...
def get_base64(self) -> str: ...
def sign_ssh_data(self, data: bytes, algorithm: str | None = None) -> Message: ...
def verify_ssh_sig(self, data: bytes, msg: Message) -> bool: ...
@classmethod
def from_private_key_file(cls, filename: str, password: str | None = None) -> Self: ...
@classmethod
def from_private_key(cls, file_obj: IO[str], password: str | None = None) -> Self: ...
def write_private_key_file(self, filename: str, password: str | None = None) -> None: ...
def write_private_key(self, file_obj: IO[str], password: str | None = None) -> None: ...
def load_certificate(self, value: Message | str) -> None: ...
class PublicBlob:
key_type: str
key_blob: bytes
comment: str
def __init__(self, type_: str, blob: bytes, comment: str | None = None) -> None: ...
@classmethod
def from_file(cls, filename: str) -> Self: ...
@classmethod
def from_string(cls, string: str) -> Self: ...
@classmethod
def from_message(cls, message: Message) -> Self: ...
def __eq__(self, other: object) -> bool: ...
def __ne__(self, other: object) -> bool: ...