[pyOpenSSL] Update to 24.0.* (#11338)

This commit is contained in:
Sebastian Rittau
2024-01-29 14:09:40 +01:00
committed by GitHub
parent 81070c4dbc
commit ed97b42ee2
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
version = "23.3.*"
version = "24.0.*"
upstream_repository = "https://github.com/pyca/pyopenssl"
# Requires a version of cryptography with a `py.typed` file
requires = ["cryptography>=35.0.0"]

View File

@@ -175,6 +175,7 @@ class Connection:
def get_peer_finished(self) -> bytes | None: ...
def set_alpn_protos(self, protos: Sequence[bytes]) -> None: ...
def get_alpn_proto_negotiated(self) -> bytes: ...
def get_selected_srtp_profile(self) -> bytes: ...
def request_ocsp(self) -> None: ...
_T = TypeVar("_T")