:mod:`ssl`
==========
.. py:module:: ssl
.. autoapi-nested-parse::
The `ssl` module provides SSL contexts to wrap sockets in.
.. raw:: html
Available on these boards
- AITHinker ESP32-C3S_Kit
- ATMegaZero ESP32-S2
- Adafruit Feather ESP32-S2 TFT
- Adafruit Feather ESP32S2
- Adafruit FunHouse
- Adafruit MagTag
- Adafruit Metro ESP32S2
- Adafruit QT Py ESP32S2
- Artisense Reference Design RD00
- BastWiFi
- CrumpS2
- ESP 12k NodeMCU
- Feather ESP32S2 without PSRAM
- FeatherS2
- FeatherS2 Neo
- FeatherS2 PreRelease
- Franzininho WIFI w/Wroom
- Franzininho WIFI w/Wrover
- Gravitech Cucumber M
- Gravitech Cucumber MS
- Gravitech Cucumber R
- Gravitech Cucumber RS
- HMI-DevKit-1.1
- Kaluga 1
- LILYGO TTGO T8 ESP32-S2 w/Display
- MORPHEANS MorphESP-240
- MicroDev microC3
- MicroDev microS2
- Oak Dev Tech PixelWing ESP32S2
- S2Mini
- S2Pico
- Saola 1 w/Wroom
- Saola 1 w/Wrover
- Targett Module Clip w/Wroom
- Targett Module Clip w/Wrover
- Thingz - Galaxia
- TinyS2
- nanoESP32-S2 w/Wrover
- nanoESP32-S2 w/Wroom
.. py:function:: create_default_context() -> SSLContext
Return the default SSLContext.
.. py:class:: SSLContext
Settings related to SSL that can be applied to a socket by wrapping it.
This is useful to provide SSL certificates to specific connections
rather than all of them.
.. py:function:: wrap_socket(sock: socketpool.Socket, *, server_side: bool = False, server_hostname: Optional[str] = None) -> SSLSocket
Wraps the socket into a socket-compatible class that handles SSL negotiation.
The socket must be of type SOCK_STREAM.
.. py:class:: SSLSocket
Implements TLS security on a subset of `socketpool.Socket` functions. Cannot be created
directly. Instead, call `wrap_socket` on an existing socket object.
Provides a subset of CPython's `ssl.SSLSocket` API. It only implements the versions of
recv that do not allocate bytes objects.
.. py:method:: __enter__() -> SSLSocket
No-op used by Context Managers.
.. py:method:: __exit__() -> None
Automatically closes the Socket when exiting a context. See
:ref:`lifetime-and-contextmanagers` for more info.
.. py:method:: accept() -> Tuple[SSLSocket, Tuple[str, int]]
Accept a connection on a listening socket of type SOCK_STREAM,
creating a new socket of type SOCK_STREAM.
Returns a tuple of (new_socket, remote_address)
.. py:method:: bind(address: Tuple[str, int]) -> None
Bind a socket to an address
:param ~tuple address: tuple of (remote_address, remote_port)
.. py:method:: close() -> None
Closes this Socket
.. py:method:: connect(address: Tuple[str, int]) -> None
Connect a socket to a remote address
:param ~tuple address: tuple of (remote_address, remote_port)
.. py:method:: listen(backlog: int) -> None
Set socket to listen for incoming connections
:param ~int backlog: length of backlog queue for waiting connetions
.. py:method:: recv_into(buffer: _typing.WriteableBuffer, bufsize: int) -> int
Reads some bytes from the connected remote address, writing
into the provided buffer. If bufsize <= len(buffer) is given,
a maximum of bufsize bytes will be read into the buffer. If no
valid value is given for bufsize, the default is the length of
the given buffer.
Suits sockets of type SOCK_STREAM
Returns an int of number of bytes read.
:param bytearray buffer: buffer to receive into
:param int bufsize: optionally, a maximum number of bytes to read.
.. py:method:: send(bytes: _typing.ReadableBuffer) -> int
Send some bytes to the connected remote address.
Suits sockets of type SOCK_STREAM
:param ~bytes bytes: some bytes to send
.. py:method:: settimeout(value: int) -> None
Set the timeout value for this socket.
:param ~int value: timeout in seconds. 0 means non-blocking. None means block indefinitely.
.. py:method:: setblocking(flag: bool) -> Optional[int]
Set the blocking behaviour of this socket.
:param ~bool flag: False means non-blocking, True means block indefinitely.
.. py:method:: __hash__() -> int
Returns a hash for the Socket.