_openssh.pyi 324 B

1234567
  1. from typing import Tuple
  2. def read_int4(data: bytes) -> Tuple[int, bytes]: ...
  3. def read_bytes(data: bytes) -> Tuple[bytes, bytes]: ...
  4. def read_string(data: bytes) -> Tuple[str, bytes]: ...
  5. def check_padding(pad: bytes) -> None: ...
  6. def import_openssh_private_generic(data: bytes, password: bytes) -> Tuple[str, bytes]: ...