Skip to content

Commit

Permalink
Bump paramiko to 3.5.* (#12672)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Sep 17, 2024
1 parent d34ef50 commit 0a0ba2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/paramiko/METADATA.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 4 additions & 0 deletions stubs/paramiko/paramiko/packet.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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: ...
Expand Down

0 comments on commit 0a0ba2f

Please sign in to comment.