summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-106687: _ssl: use uint64_t for SSL options (#106700) (#116665)Victor Stinner2024-03-131-0/+24
* [3.11] gh-113280: Always close socket if SSLSocket creation failed (GH-114659...Miss Islington (bot)2024-02-041-10/+23
* [3.11] gh-84443: SSLSocket.recv_into() now support buffer protocol with items...Serhiy Storchaka2023-11-271-0/+22
* [3.11] gh-67565: Add tests for C-contiguity checks (GH-110951) (GH-111199)Furkan Onder2023-10-231-0/+4
* [3.11] [3.12] gh-108303: Move all certificates to `Lib/test/certdata/` (GH-10...Miss Islington (bot)2023-10-101-6/+6
* [3.11] Add test.support.busy_retry() (#93770) (#110341)Victor Stinner2023-10-041-4/+1
* [3.11] gh-108416: Mark slow but not CPU bound test methods with requires_reso...Serhiy Storchaka2023-09-051-0/+2
* [3.11] gh-108342: Make ssl TestPreHandshakeClose more reliable (GH-108370) (#...Łukasz Langa2023-08-241-31/+71
* [3.11] gh-108310: Fix CVE-2023-40217: Check for & avoid the ssl pre-close fla...Łukasz Langa2023-08-221-0/+211
* [3.11] GH-95494: Fix transport EOF handling in OpenSSL 3.0 (GH-95495) (#103006)Miss Islington (bot)2023-03-271-3/+15
* [3.11] gh-96931: Fix incorrect results in ssl.SSLSocket.shared_ciphers (GH-96...Miss Islington (bot)2023-03-241-3/+3
* [3.11] gh-95280: Fix test_get_ciphers on systems without RSA key exchange (GH...Miss Islington (bot)2022-07-271-2/+14
* gh-94208: Add more TLS version/protocol checks for FreeBSD (GH-94347)Miss Islington (bot)2022-06-281-27/+33
* bpo-45046: Support context managers in unittest (GH-28045)Miss Islington (bot)2022-05-081-4/+2
* gh-92169: Use warnings_helper.import_deprecated() to import deprecated module...Hugo van Kemenade2022-05-031-5/+3
* bpo-40066: [Enum] fix tests (GH-30643)Ethan Furman2022-01-171-2/+2
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-3/+5
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-5/+3
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-3/+5
* bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)Christian Heimes2021-12-171-1/+5
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-1/+4
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-4/+1
* bpo-45229: Fix setUpModule in test_ssl (GH-28454)Serhiy Storchaka2021-09-191-2/+0
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-14/+6
* bpo-45185: enables `TestEnumerations` in `test_ssl` (GH-28330)Nikita Sobolev2021-09-151-8/+10
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
* bpo-44498: suppress DeprecationWarnings for asynchat, asyncore and smtpd in t...Irit Katriel2021-06-241-1/+5
* bpo-44229: Ignore spurious EPROTOTYPE on macOS in test_ssl (GH-26893)Erlend Egeberg Aasland2021-06-241-3/+8
* bpo-44389: Fix typo in ssl deprecation warning message (GH-26754)Joe2021-06-171-1/+1
* bpo-44389: Fix deprecation of OP_NO_TLSv1_3 (GH-26700)Christian Heimes2021-06-131-8/+56
* bpo-44362: ssl: improve deprecation warnings and docs (GH-26646)Christian Heimes2021-06-111-7/+12
* bpo-43921: Cleanup test_ssl.test_wrong_cert_tls13() (GH-26520)Victor Stinner2021-06-031-12/+5
* bpo-43921: Fix test_ssl.test_wrong_cert_tls13() on Windows (GH-26502)Victor Stinner2021-06-031-14/+6
* bpo-43921: Fix test_ssl.test_pha_required_nocert() (GH-26489)Victor Stinner2021-06-021-2/+9
* bpo-43988: Use check disallow instantiation helper (GH-26392)Erlend Egeberg Aasland2021-05-271-5/+1
* bpo-43943: ssl tests: Increase server socket timeout, backlog, debugging (GH-...Christian Heimes2021-05-031-5/+11
* bpo-43908: Mark ssl, hash, and hmac types as immutable (GH-25792)Christian Heimes2021-05-021-0/+19
* bpo-18233: Add internal methods to access peer chain (GH-25467)Christian Heimes2021-04-261-2/+67
* bpo-43921: also accept EOF in post-handshake auth test (GH-25574)Christian Heimes2021-04-241-1/+3
* bpo-37322: Fix ResourceWarning and exception handling in test (GH-25553)Christian Heimes2021-04-241-38/+38
* bpo-31870: Fix test_get_server_certificate_timeout on Windows (GH-25570)Christian Heimes2021-04-241-1/+5
* bpo-31870: Add a timeout parameter to ssl.get_server_certificate() (GH-22270)Zackery Spytz2021-04-241-0/+5
* bpo-43921: ignore failing test_wrong_cert_tls13 on Windows (GH-25561)Christian Heimes2021-04-231-2/+10
* bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25...Christian Heimes2021-04-231-3/+8
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-1/+152
* bpo-43799: Also define SSLv3_method() (GH-25481)Christian Heimes2021-04-201-8/+0
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-152/+1
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-1/+152
* bpo-43669: More test_ssl cleanups (GH-25470)Christian Heimes2021-04-191-78/+21
* bpo-43880: Show DeprecationWarnings for deprecated ssl module features (GH-25...Christian Heimes2021-04-191-153/+120