| Server IP : 35.80.110.71 / Your IP : 216.73.216.21 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/redis-stubs/ |
Upload File : |
from _typeshed import Incomplete
from ssl import SSLObject, SSLSocket
from typing_extensions import Literal
from cryptography.x509.base import Certificate
from OpenSSL.SSL import Connection
def ocsp_staple_verifier(con: Connection, ocsp_bytes: bytes, expected: bytes | None = None) -> Literal[True]: ...
class OCSPVerifier:
SOCK: SSLObject | SSLSocket
HOST: str
PORT: int
CA_CERTS: str | None
def __init__(self, sock: SSLObject | SSLSocket, host: str, port: int, ca_certs: str | None = None) -> None: ...
# cryptography.x509.general_name.GeneralName.value is typed as Any
def components_from_socket(self) -> tuple[Certificate, Incomplete | None, Incomplete]: ...
def components_from_direct_connection(self) -> tuple[Certificate, Incomplete | None, Incomplete]: ...
def build_certificate_url(self, server: str, cert: Certificate, issuer_cert: Certificate) -> str: ...
def check_certificate(self, server: str, cert: Certificate, issuer_url: str | bytes) -> Literal[True]: ...
def is_valid(self) -> Literal[True]: ...