Bump paramiko to 3.5.* (#12672)

This commit is contained in:
sobolevn
2024-09-17 14:17:06 +03:00
committed by GitHub
parent d34ef50754
commit 0a0ba2f4d0
2 changed files with 5 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
version = "3.4.*"
version = "3.5.*"
upstream_repository = "https://github.com/paramiko/paramiko"
# Requires a version of cryptography where cryptography.hazmat.primitives.ciphers.Cipher is generic
requires = ["cryptography>=37.0.0"]

View File

@@ -33,6 +33,8 @@ class Packetizer:
mac_key: bytes | bytearray,
sdctr: bool = False,
etm: bool = False,
aead: bool = False,
iv_out: bytes | None = None,
) -> None: ...
def set_inbound_cipher(
self,
@@ -42,6 +44,8 @@ class Packetizer:
mac_size: int,
mac_key: bytes | bytearray,
etm: bool = False,
aead: bool = False,
iv_in: bytes | None = None,
) -> None: ...
def set_outbound_compressor(self, compressor: ZlibCompressor) -> None: ...
def set_inbound_compressor(self, compressor: ZlibDecompressor) -> None: ...