binary-newsreaderusenetstabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
415 B
12 lines
415 B
5 years ago
|
from typing import Dict, Tuple, Union
|
||
|
|
||
|
# https://github.com/python/typeshed/blob/master/stdlib/2and3/ssl.pyi
|
||
|
_PCTRTT = Tuple[Tuple[str, str], ...]
|
||
|
_PCTRTTT = Tuple[_PCTRTT, ...]
|
||
|
_PeerCertRetDictType = Dict[str, Union[str, _PCTRTTT, _PCTRTT]]
|
||
|
_PeerCertRetType = Union[_PeerCertRetDictType, bytes, None]
|
||
|
|
||
|
class CertificateError(ValueError): ...
|
||
|
|
||
|
def match_hostname(cert: _PeerCertRetType, hostname: str) -> None: ...
|