mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-23 04:11:28 +08:00
Bump paramiko to 3.5.* (#12672)
This commit is contained in:
@@ -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"]
|
||||
|
||||
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user