summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* gh-141801: Use accessors for ASN1_STRING fields in libssl (GH-141802)David Benjamin2025-11-221-8/+10
* gh-139929: fix incorrect OpenSSL version-based guard in `_ssl.c` (GH-139945)Bénédikt Tran2025-10-111-1/+1
* gh-139748: fix leaks in AC error paths when using unicode FS-based converters...Bénédikt Tran2025-10-081-3/+2
* gh-127330: Comment correction in _ssl.c (#139603)Skip Montanaro2025-10-051-1/+1
* gh-116946: remove unnecessary gc from immutable types (#139073)Sergey Miryanov2025-10-011-4/+1
* gh-129813, PEP 782: Use PyBytesWriter in _ssl (#138929)Victor Stinner2025-09-181-10/+12
* gh-129813, PEP 782: Use PyBytesWriter in ssl.MemoryBIO (#139113)Victor Stinner2025-09-181-12/+11
* gh-138252: Add support in SSL module for getting and setting TLS signature al...Ron Frederick2025-09-081-4/+132
* gh-138342: Use a common utility for visiting an object's type (GH-138343)Peter Bierma2025-09-011-8/+1
* gh-137197: Add `SSLContext.set_ciphersuites` to set TLSv1.3 ciphers (#137198)Ron Frederick2025-08-301-0/+20
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-9/+21
* gh-132339: Add support for OpenSSL 3.5 (GH-137720)Zachary Ware2025-08-141-1/+1
* gh-137583: Only lock the SSL context, not the SSL socket (GH-137588)Peter Bierma2025-08-101-18/+20
* gh-136306: Add support for getting and setting SSL groups (#136307)Ron Frederick2025-07-281-0/+113
* gh-134698: Hold a lock when the thread state is detached in `ssl` (GH-134724)Peter Bierma2025-07-251-44/+59
* gh-99813: Start using `SSL_sendfile` when available (#99907)Illia Volochii2025-07-121-0/+208
* gh-133968: Add PyUnicodeWriter_WriteASCII() function (#133973)Victor Stinner2025-05-291-1/+1
* gh-133623: Add `ssl.HAS_PSK_TLS13` to detect external TLS 1.3 PSK support (#1...Will Childs-Klein2025-05-091-0/+6
* gh-131942: Use the Python-specific `Py_DEBUG` macro rather than `_DEBUG` in W...Xuehai Pan2025-05-081-1/+1
* gh-132987: Support __index__() in the ssl.SSLContext.options setter (GH-133098)Serhiy Storchaka2025-04-291-6/+2
* gh-131423: Update OpenSSL data to 3.4.1 on Linux (#131618)Bénédikt Tran2025-04-251-1/+3
* gh-89562: Remove hostflags from PySSLContext (GH-28602)Rami2025-04-181-27/+29
* gh-131127: Minimal build support on systems using LibreSSL (GH-131128)Collin Funk2025-04-111-1/+1
* GH-131296: Fix parenthesis warnings on Windows-specific code (GH-131905)Chris Eibl2025-03-311-2/+2
* gh-131423: Update to OpenSSL 3.0.16. (GH-131839)Steve Dower2025-03-281-0/+6
* gh-111178: Fix function signatures for multiple tests (#131496)Victor Stinner2025-03-201-1/+2
* gh-111178: fix UBSan failures in `Modules/_ssl.c` (GH-130719)Bénédikt Tran2025-03-171-26/+48
* gh-129354: Use PyErr_FormatUnraisable() function (#129518)Victor Stinner2025-01-311-6/+19
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-201-2/+2
* gh-127257: Add hex code to ssl "unknown error" message (GH-127360)Petr Viktorin2025-01-101-16/+47
* gh-127350: Add Py_fopen() and Py_fclose() functions (#127821)Victor Stinner2025-01-061-1/+1
* gh-128035: Add ssl.HAS_PHA to detect libssl PHA support (GH-128036)Will Childs-Klein2024-12-241-0/+6
* gh-127257: ssl: Raise OSError for ERR_LIB_SYS (GH-127361)Petr Viktorin2024-12-101-0/+10
* gh-126890: Restore stripped `ssl` docstrings (GH-127281)Peter Bierma2024-12-021-13/+50
* gh-127330: Update for OpenSSL 3.4 & document+improve the update process (GH-1...Petr Viktorin2024-11-281-1/+2
* gh-126455: Disallow _ssl.SSLSocket instantiation (#126481)Victor Stinner2024-11-061-1/+1
* gh-126433: Fix compiler warnings on 32-bit Windows (#126444)Victor Stinner2024-11-051-2/+4
* gh-126106: Fix `NULL` possible derefrence in `Modules/_ssl.c` (#126111)sobolevn2024-10-291-3/+3
* gh-124984: Enhance `ssl` thread safety (#124993)Peter Bierma2024-10-191-224/+459
* gh-116810: fix memory leak in ssl module (GH-123249)Jeffrey R. Van Voorst2024-09-301-63/+13
* gh-117784: Only reference PHA functions ifndef SSL_VERIFY_POST_HANDSHAKE (GH-...Will Childs-Klein2024-07-011-11/+17
* gh-121040: Use __attribute__((fallthrough)) (#121044)Victor Stinner2024-06-271-2/+2
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-101732: Modules/_ssl.c: use Y2038 compatible openssl function when availab...Alexander Kanavin2024-05-031-0/+4
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-7/+6
* gh-117310: Remove extra DECREF on "no ciphers" error path in `_ssl._SSLContex...Gregory P. Smith2024-03-281-1/+0
* gh-115627: Fix PySSL_SetError handling SSL_ERROR_SYSCALL (GH-115628)yevgeny hong2024-03-261-30/+18
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-201-0/+1
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-201-7/+7
* gh-114572: Fix locking in cert_store_stats and get_ca_certs (#114573)David Benjamin2024-02-161-5/+60