🌐
Python
docs.python.org › 3 › library › ssl.html
ssl — TLS/SSL wrapper for socket objects — Python 3.14.5rc1 documentation
Source code: Lib/ssl.py This module provides access to Transport Layer Security (often known as “Secure Sockets Layer”) encryption and peer authentication facilities for network sockets, both clien...
🌐
Readthedocs
python-security.readthedocs.io › ssl.html
Python SSL and TLS security — Python Security 0.0 documentation
New in Python 3.2. ... SSLContext.load_verify_locations(): This method can also load certification revocation lists (CRLs) in PEM or DER format.
🌐
PyPI
pypi.org › project › ssl
ssl · PyPI
April 20, 2013 - It’s quite similar to the 2.6 ssl module. There’s no stand-alone documentation for this package; instead, just use the development branch documentation for the SSL module at http://docs.python.org/dev/library/ssl.html.
      » pip install ssl
    
Published   Apr 20, 2013
Version   1.16
🌐
Python
docs.python.org › 3.3 › library › ssl.html
18.2. ssl — TLS/SSL wrapper for socket objects — Python 3.3.7 documentation
Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. For example: context = ssl.SSLContext(ssl.PROTOCOL_TLSv1) context.set_ciphers('HIGH:!aNULL:!eNULL') The !aNULL:!eNULL part of the cipher spec is necessary to disable ciphers which don’t provide both encryption and authentication. Be sure to read OpenSSL’s documentation about the cipher list format.
🌐
Python
docs.python.org › 3.0 › library › ssl.html
ssl — SSL wrapper for socket objects — Python v3.0.1 documentation
Takes an instance sock of socket.socket, and returns an instance of ssl.SSLSocket, a subtype of socket.socket, which wraps the underlying socket in an SSL context. For client-side sockets, the context construction is lazy; if the underlying socket isn’t connected yet, the context construction will be performed after connect() is called on the socket.
🌐
Python
docs.python.org › 3.1 › library › ssl.html
17.3. ssl — TLS/SSL wrapper for socket objects — Python v3.1.5 documentation
This section documents the objects and functions in the ssl module; for more general information about TLS, SSL, and certificates, the reader is referred to the documents in the “See Also” section at the bottom.
🌐
Python
docs.python.org › 3.8 › library › ssl.html
ssl — TLS/SSL wrapper for socket objects — Python 3.8.20 documentation
Doing so may lead to a false sense of security, as the default settings of the ssl module are not necessarily appropriate for your application. This section documents the objects and functions in the ssl module; for more general information about TLS, SSL, and certificates, the reader is referred ...
🌐
Python
docs.python.org › 3.9 › library › ssl.html
ssl — TLS/SSL wrapper for socket objects — Python 3.9.24 documentation
Doing so may lead to a false sense of security, as the default settings of the ssl module are not necessarily appropriate for your application. This section documents the objects and functions in the ssl module; for more general information about TLS, SSL, and certificates, the reader is referred ...
🌐
Python
docs.python.org › 3.2 › library › ssl.html
17.3. ssl — TLS/SSL wrapper for socket objects — Python v3.2.6 documentation
October 12, 2014 - Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. For example: context = ssl.SSLContext(ssl.PROTOCOL_TLSv1) context.set_ciphers('HIGH:!aNULL:!eNULL') The !aNULL:!eNULL part of the cipher spec is necessary to disable ciphers which don’t provide both encryption and authentication. Be sure to read OpenSSL’s documentation about the cipher list format.
Find elsewhere
🌐
Python
docs.python.org › 3.5 › library › ssl.html
18.2. ssl — TLS/SSL wrapper for socket objects — Python 3.5.10 documentation
If you have advanced security ...set_ciphers() method. Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. Be sure to read OpenSSL’s documentation about the cipher list forma...
🌐
MicroPython
docs.micropython.org › en › latest › library › ssl.html
ssl – SSL/TLS module — MicroPython latest documentation
Wrap the given sock and return a new wrapped-socket object. The implementation of this function is to first create an SSLContext and then call the SSLContext.wrap_socket method on that context object. The arguments sock, server_side and server_hostname are passed through unchanged to the method call.
🌐
GitHub
github.com › wdk-docs › python-documentation › blob › master › docs › library › ssl.rst
python-documentation/docs/library/ssl.rst at master · wdk-docs/python-documentation
This section documents the objects and functions in the ssl module; for more general information about TLS, SSL, and certificates, the reader is referred to the documents in the "See Also" section at the bottom.
Author   wdk-docs
🌐
Readthedocs
pydoc-zh.readthedocs.io › en › latest › library › ssl.html
17.3. ssl — TLS/SSL wrapper for socket objects — Python 2.7.6 documentation
Takes an instance sock of socket.socket, and returns an instance of ssl.SSLSocket, a subtype of socket.socket, which wraps the underlying socket in an SSL context. For client-side sockets, the context construction is lazy; if the underlying socket isn’t connected yet, the context construction will be performed after connect() is called on the socket.
🌐
Google Cloud
cloud.google.com › app engine › standard environment › available legacy bundled services
Available legacy bundled services | App Engine standard environment | Google Cloud Documentation
The following list shows which services are supported in second-generation runtimes: · App Engine service Availability in Python Alternatives App Identity Available Migrate to Open ID Connect (OIDC) ID tokens or Identity Platform Blobstore Available Migrate to Cloud Storage Capabilities Available ...
🌐
Pyopenssl
pyopenssl.org › en › latest › api › ssl.html
SSL — An interface to the SSL-specific parts of OpenSSL — pyOpenSSL 26.1.0 documentation
The first integer specifies where in the SSL handshake the function was called, and the other the return code from a (possibly failed) internal function call. ... Set the TLS key logging callback to callback. This function will be called whenever TLS key material is generated or received, in order to allow applications to store this keying material for debugging purposes. ... callback – The Python callback to use.
🌐
Snyk
snyk.io › blog › implementing-tls-ssl-python
Implementing TLS/SSL in Python | Snyk
October 16, 2022 - Then, we’ll walk through the steps for adding TLS to your Python application on Linux. The TLS protocol, the successor of the secure socket layer (SSL) protocol, protects data using encryption.
🌐
GitHub
github.com › python › cpython › blob › main › Lib › ssl.py
cpython/Lib/ssl.py at main · python/cpython
# Wrapper module for _ssl, providing some additional facilities · # implemented in Python.
Author   python
🌐
Jython
jython.org › jython-old-sites › docs › library › ssl.html
17.3. ssl — SSL wrapper for socket objects — Jython v2.5.2 documentation
Jython v2.5.2 documentation » · The Python Standard Library and What Comes with Jython » · 17. Interprocess Communication and Networking » · 17.3. ssl — SSL wrapper for socket objects · 17.3.1. Functions, Constants, and Exceptions · 17.3.2. SSLSocket Objects ·