Home | History | Annotate | Download | only in Lib

Lines Matching refs:_ssl

1 # Wrapper module for _ssl, providing some additional facilities
101 import _ssl # if we can't import it, let the error propagate
103 from _ssl import OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_INFO, OPENSSL_VERSION
104 from _ssl import _SSLContext, MemoryBIO, SSLSession
105 from _ssl import (
109 from _ssl import txt2obj as _txt2obj, nid2obj as _nid2obj
110 from _ssl import RAND_status, RAND_add, RAND_bytes, RAND_pseudo_bytes
112 from _ssl import RAND_egd
118 from _ssl import HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN
119 from _ssl import _OPENSSL_API_VERSION
125 source=_ssl)
130 source=_ssl)
135 source=_ssl)
140 source=_ssl)
145 source=_ssl)
150 source=_ssl)
160 from _ssl import enum_certificates, enum_crls
171 if _ssl.HAS_TLS_UNIQUE:
338 parts = _ssl.get_default_verify_paths()
651 if _ssl.HAS_NPN:
658 if _ssl.HAS_ALPN:
896 if not self._sslobj or not _ssl.HAS_NPN:
903 if not self._sslobj or not _ssl.HAS_ALPN: