COMMITS
/ Modules/_ssl.c September 6, 2021
M
Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27997)
Miss Islington (bot) committed
July 23, 2021
M
bpo-42854: Correctly use size_t for _ssl._SSLSocket.read and _ssl._SSLSocket.write (GH-27271) (GH-27308)
Miss Islington (bot) committed
June 17, 2021
M
bpo-44389: Fix typo in ssl deprecation warning message (GH-26754)
Miss Islington (bot) committed
June 13, 2021
M
[3.10] bpo-44389: Fix deprecation of OP_NO_TLSv1_3 (GH-26700) (GH-26705)
Miss Islington (bot) committed
M
bpo-44389: Remove duplicate SSL_OP_NO_TLSv1_2 flag (GH-26680)
Miss Islington (bot) committed
June 11, 2021
M
bpo-44362: ssl: improve deprecation warnings and docs (GH-26646)
Miss Islington (bot) committed
May 28, 2021
M
bpo-44252: Correctly implement gc support for SSLError objects (GH-26439) (GH-26441)
Miss Islington (bot) committed
May 27, 2021
M
bpo-42972: Fully implement GC protocol for ssl heap types (GH-26370) (GH-26399)
Miss Islington (bot) committed
May 2, 2021
C
bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)
Christian Heimes committed
May 1, 2021
C
bpo-43998: Default to TLS 1.2 and increase cipher suite security (GH-25778)
Christian Heimes committed
April 26, 2021
C
bpo-18233: Add internal methods to access peer chain (GH-25467)
Christian Heimes committed
April 23, 2021
Z
bpo-35114: Make ssl.RAND_status() return a bool (GH-20063)
Zackery Spytz committed
C
bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25554)
Christian Heimes committed
April 20, 2021
C
bpo-43799: Also define SSLv3_method() (GH-25481)
Christian Heimes committed
April 19, 2021
C
bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25455)
Christian Heimes committed
C
bpo-42854: Use SSL_read/write_ex() (GH-25468)
Christian Heimes committed
April 17, 2021
C
bpo-42333: Port _ssl extension to multiphase initialization (PEP 489) (GH-23253)
Christian Heimes committed
C
bpo-43669: Remove OpenSSL 0.9 to 1.1.0 specific documentation (GH-25453)
Christian Heimes committed
C
bpo-43669: PEP 644: Require OpenSSL 1.1.1 or newer (GH-23014)
Christian Heimes committed
C
bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)
Christian Heimes committed
April 13, 2021
C
bpo-43799: OpenSSL 3.0.0: declare OPENSSL_API_COMPAT 1.1.1 (GH-25329)
Christian Heimes committed
April 9, 2021
C
bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)
Christian Heimes committed
C
bpo-43788: Generate version specific _ssl_data.h (GH-25300)
Christian Heimes committed
C
bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-25303)
Christian Heimes committed
March 21, 2021
C
bpo-43577: Fix deadlock with SSLContext._msg_callback and sni_callback (GH-24957)
Christian Heimes committed
March 18, 2021
C
bpo-39342: Expose X509_V_FLAG_ALLOW_PROXY_CERTS in ssl module (GH-18011)
Chris Burr committed
December 2, 2020
P
Correct return type in Modules/_ssl.c::sslmodule_legacy (GH-23609)
Pablo Galindo committed
December 1, 2020
V
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner committed
V
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner committed
November 22, 2020
S
bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441)
Serhiy Storchaka committed
November 20, 2020
C
bpo-42333: Port _ssl extension module to heap types (GH-23392)
Christian Heimes committed
C
bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)
Christian Heimes committed
October 25, 2020
Z
bpo-42144: Add a missing "goto error;" in the _ssl module (GH-22959)
Zackery Spytz committed
August 15, 2020
July 17, 2020
M
bpo-41195: Add getter for Openssl security level (GH-21282)
matthewhughes934 committed
July 9, 2020
Z
bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407)
Zackery Spytz committed
July 8, 2020
Z
closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21385)
Zackery Spytz committed
June 1, 2020
C
bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)
Christian Heimes committed
May 16, 2020
C
bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)
Christian Heimes committed
May 15, 2020
C
bpo-40515: Require OPENSSL_THREADS (GH-19953)
Christian Heimes committed
April 15, 2020
V
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
February 17, 2020
D
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na committed
January 9, 2020
A
December 7, 2019
C
bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190)
Christian Heimes committed
September 14, 2019
S
bpo-37206: Unrepresentable default values no longer represented as None. (GH-13933)
Serhiy Storchaka committed
September 9, 2019
C
bpo-35941: Fix performance regression in new code (GH-12610)
Christian Heimes committed
N
bpo-37702: Fix SSL's certificate-store leak on Windows (GH-15632)
neonene committed
August 15, 2019