Files
typeshed/stdlib/2.7/ssl.pyi
Ben Darnell 2ddbf901c9 2.7 stub updates (#149)
* Stubgen modules for 2.7

Cookie
email._parseaddr
email.utils
genericpath
linecache
mimetypes
multiprocessing
multiprocessing.process
multiprocessing.util
posixpath
quopri
runpy
weakref
wsgiref.validate

* 2.7/typing.py: add missing __contains__ definition

* 2.7/subprocess.py: make output argument to CalledProcessError optional

Commit f08160bd did the same for py3.

* 2.7/hmac.pyi: add compare_digest

This function was introduced to the 2.7 series in 2.7.7.

* Stubgen 2.7/ssl.pyi

This replaces a nearly-empty handwritten stub.

* Copy constants and other definitions from py3 to py2 ssl.pyi

* 2.7/__future__.pyi: add methods

* 2.7/_weakref.pyi: backport some definitions from 3.x version

* Stubgen 2.7/locale.pyi

Hand-edited to remove declarations that are redundant (and cause
conflicts with) the "from _locale import *" line.
2016-04-17 19:02:55 -07:00

191 lines
7.2 KiB
Python

# Stubs for ssl (Python 2)
from typing import Any
from socket import socket, error as socket_error
from collections import namedtuple
class SSLError(OSError): ...
class SSLEOFError(SSLError): ...
class SSLSyscallError(SSLError): ...
class SSLWantReadError(SSLError): ...
class SSLWantWriteError(SSLError): ...
class SSLZeroReturnError(SSLError): ...
OPENSSL_VERSION = ... # type: str
OPENSSL_VERSION_INFO = ... # type: Any
OPENSSL_VERSION_NUMBER = ... # type: int
VERIFY_CRL_CHECK_CHAIN = ... # type: int
VERIFY_CRL_CHECK_LEAF = ... # type: int
VERIFY_DEFAULT = ... # type: int
VERIFY_X509_STRICT = ... # type: int
ALERT_DESCRIPTION_ACCESS_DENIED = ... # type: int
ALERT_DESCRIPTION_BAD_CERTIFICATE = ... # type: int
ALERT_DESCRIPTION_BAD_CERTIFICATE_HASH_VALUE = ... # type: int
ALERT_DESCRIPTION_BAD_CERTIFICATE_STATUS_RESPONSE = ... # type: int
ALERT_DESCRIPTION_BAD_RECORD_MAC = ... # type: int
ALERT_DESCRIPTION_CERTIFICATE_EXPIRED = ... # type: int
ALERT_DESCRIPTION_CERTIFICATE_REVOKED = ... # type: int
ALERT_DESCRIPTION_CERTIFICATE_UNKNOWN = ... # type: int
ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE = ... # type: int
ALERT_DESCRIPTION_CLOSE_NOTIFY = ... # type: int
ALERT_DESCRIPTION_DECODE_ERROR = ... # type: int
ALERT_DESCRIPTION_DECOMPRESSION_FAILURE = ... # type: int
ALERT_DESCRIPTION_DECRYPT_ERROR = ... # type: int
ALERT_DESCRIPTION_HANDSHAKE_FAILURE = ... # type: int
ALERT_DESCRIPTION_ILLEGAL_PARAMETER = ... # type: int
ALERT_DESCRIPTION_INSUFFICIENT_SECURITY = ... # type: int
ALERT_DESCRIPTION_INTERNAL_ERROR = ... # type: int
ALERT_DESCRIPTION_NO_RENEGOTIATION = ... # type: int
ALERT_DESCRIPTION_PROTOCOL_VERSION = ... # type: int
ALERT_DESCRIPTION_RECORD_OVERFLOW = ... # type: int
ALERT_DESCRIPTION_UNEXPECTED_MESSAGE = ... # type: int
ALERT_DESCRIPTION_UNKNOWN_CA = ... # type: int
ALERT_DESCRIPTION_UNKNOWN_PSK_IDENTITY = ... # type: int
ALERT_DESCRIPTION_UNRECOGNIZED_NAME = ... # type: int
ALERT_DESCRIPTION_UNSUPPORTED_CERTIFICATE = ... # type: int
ALERT_DESCRIPTION_UNSUPPORTED_EXTENSION = ... # type: int
ALERT_DESCRIPTION_USER_CANCELLED = ... # type: int
OP_ALL = ... # type: int
OP_CIPHER_SERVER_PREFERENCE = ... # type: int
OP_NO_COMPRESSION = ... # type: int
OP_NO_SSLv2 = ... # type: int
OP_NO_SSLv3 = ... # type: int
OP_NO_TLSv1 = ... # type: int
OP_NO_TLSv1_1 = ... # type: int
OP_NO_TLSv1_2 = ... # type: int
OP_SINGLE_DH_USE = ... # type: int
OP_SINGLE_ECDH_USE = ... # type: int
SSL_ERROR_EOF = ... # type: int
SSL_ERROR_INVALID_ERROR_CODE = ... # type: int
SSL_ERROR_SSL = ... # type: int
SSL_ERROR_SYSCALL = ... # type: int
SSL_ERROR_WANT_CONNECT = ... # type: int
SSL_ERROR_WANT_READ = ... # type: int
SSL_ERROR_WANT_WRITE = ... # type: int
SSL_ERROR_WANT_X509_LOOKUP = ... # type: int
SSL_ERROR_ZERO_RETURN = ... # type: int
CERT_NONE = ... # type: int
CERT_OPTIONAL = ... # type: int
CERT_REQUIRED = ... # type: int
PROTOCOL_SSLv23 = ... # type: int
PROTOCOL_SSLv3 = ... # type: int
PROTOCOL_TLSv1 = ... # type: int
PROTOCOL_TLSv1_1 = ... # type: int
PROTOCOL_TLSv1_2 = ... # type: int
HAS_ECDH = ... # type: bool
HAS_NPN = ... # type: bool
HAS_SNI = ... # type: bool
CHANNEL_BINDING_TYPES = ... # type: Any
class CertificateError(ValueError): ...
def match_hostname(cert, hostname): ...
DefaultVerifyPaths = namedtuple('DefaultVerifyPaths', 'cafile capath openssl_cafile_env openssl_cafile openssl_capath_env openssl_capath')
def get_default_verify_paths(): ...
class _ASN1Object:
def __new__(cls, oid): ...
@classmethod
def fromnid(cls, nid): ...
@classmethod
def fromname(cls, name): ...
class Purpose(_ASN1Object):
SERVER_AUTH = ... # type: Purpose
CLIENT_AUTH = ... # type: Purpose
class _SSLContext:
check_hostname = ... # type: Any
options = ... # type: Any
verify_flags = ... # type: Any
verify_mode = ... # type: Any
def __init__(self, *args, **kwargs) -> None: ...
def _set_npn_protocols(self, *args, **kwargs): ...
def _wrap_socket(self, *args, **kwargs): ...
def cert_store_stats(self): ...
def get_ca_certs(self, binary_form=...): ...
def load_cert_chain(self, *args, **kwargs): ...
def load_dh_params(self, *args, **kwargs): ...
def load_verify_locations(self, *args, **kwargs): ...
def session_stats(self, *args, **kwargs): ...
def set_ciphers(self, *args, **kwargs): ...
def set_default_verify_paths(self, *args, **kwargs): ...
def set_ecdh_curve(self, *args, **kwargs): ...
def set_servername_callback(self, method): ...
class SSLContext(_SSLContext):
def __new__(cls, protocol, *args, **kwargs): ...
protocol = ... # type: Any
def __init__(self, protocol): ...
def wrap_socket(self, sock, server_side=False, do_handshake_on_connect=True, suppress_ragged_eofs=True, server_hostname=None): ...
def set_npn_protocols(self, npn_protocols): ...
def set_alpn_protocols(self, alpn_protocols): ...
def load_default_certs(self, purpose=...): ...
def create_default_context(purpose=..., cafile=None, capath=None, cadata=None): ...
class SSLSocket(socket):
keyfile = ... # type: Any
certfile = ... # type: Any
cert_reqs = ... # type: Any
ssl_version = ... # type: Any
ca_certs = ... # type: Any
ciphers = ... # type: Any
server_side = ... # type: Any
server_hostname = ... # type: Any
do_handshake_on_connect = ... # type: Any
suppress_ragged_eofs = ... # type: Any
def __init__(self, sock=None, keyfile=None, certfile=None, server_side=False, cert_reqs=..., ssl_version=..., ca_certs=None, do_handshake_on_connect=True, family=..., type=..., proto=0, fileno=None, suppress_ragged_eofs=True, npn_protocols=None, ciphers=None, server_hostname=None, _context=None): ...
@property
def context(self): ...
@context.setter
def context(self, ctx): ...
def dup(self): ...
def read(self, len=0, buffer=None): ...
def write(self, data): ...
def getpeercert(self, binary_form=False): ...
def selected_npn_protocol(self): ...
def selected_alpn_protocol(self): ...
def cipher(self): ...
def compression(self): ...
def send(self, data, flags=0): ...
def sendto(self, data, flags_or_addr, addr=None): ...
def sendall(self, data, flags=0): ...
def recv(self, buflen=1024, flags=0): ...
def recv_into(self, buffer, nbytes=None, flags=0): ...
def recvfrom(self, buflen=1024, flags=0): ...
def recvfrom_into(self, buffer, nbytes=None, flags=0): ...
def pending(self): ...
def shutdown(self, how): ...
def close(self): ...
def unwrap(self): ...
def do_handshake(self, block=False): ...
def connect(self, addr): ...
def connect_ex(self, addr): ...
def accept(self): ...
def makefile(self, mode='', bufsize=-1): ...
def get_channel_binding(self, cb_type=''): ...
def version(self): ...
def wrap_socket(sock, keyfile=None, certfile=None, server_side=False, cert_reqs=..., ssl_version=..., ca_certs=None, do_handshake_on_connect=True, suppress_ragged_eofs=True, ciphers=None): ...
def cert_time_to_seconds(cert_time): ...
PEM_HEADER = ... # type: Any
PEM_FOOTER = ... # type: Any
def DER_cert_to_PEM_cert(der_cert_bytes): ...
def PEM_cert_to_DER_cert(pem_cert_string): ...
def get_server_certificate(addr, ssl_version=..., ca_certs=None): ...
def get_protocol_name(protocol_code): ...
def sslwrap_simple(sock, keyfile=None, certfile=None): ...