summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37428: Don't set PHA verify flag on client side (GH-14421) (GH-14493)Miss Islington (bot)2019-07-011-17/+26
* bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)Steve Dower2019-05-161-1/+1
* bpo-35941: Fix ssl certificate enumeration for windows (GH-12486)Miss Islington (bot)2019-03-281-20/+89
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* bpo-35746: Fix segfault in ssl's cert parser (GH-11569)Miss Islington (bot)2019-01-151-0/+4
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-171-0/+4
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-0/+13
* bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9743)Miss Islington (bot)2018-10-201-2/+7
* bpo-34906: Doc: Fix typos (GH-9712)Miss Islington (bot)2018-10-051-1/+1
* [3.7] bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) (GH-9505)Christian Heimes2018-09-231-8/+92
* bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)Miss Islington (bot)2018-09-211-2/+2
* bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158)Miss Islington (bot)2018-09-171-60/+68
* bpo-34710: fix SSL module build (GH-9347)Miss Islington (bot)2018-09-171-0/+1
* bpo-31432: Revert unrelated code changes to _ssl.c and test_ssl (GH-7650) (GH...Miss Islington (bot)2018-06-111-2/+2
* bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530) (GH-7649)Miss Islington (bot)2018-06-111-2/+2
* [3.7] bpo-32257: Add ssl.OP_NO_RENEGOTIATION (GH-5904) (#6877)Miss Islington (bot)2018-05-161-0/+4
* Fixed an unused variable warning introduced in GH-6800 (GH-6816)Miss Islington (bot)2018-05-141-1/+0
* Remove `ifdef` check for an OpenSSL version (0.9.6) we don't support (GH-6807)Miss Islington (bot)2018-05-141-5/+2
* [3.7] bpo-33136: Harden ssl module against CVE-2018-8970 (GH-6229) (GH-6230)Miss Islington (bot)2018-03-251-3/+4
* [3.7] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6213)Miss Islington (bot)2018-03-241-6/+16
* bpo-31453: Add setter for min/max protocol version (GH-5259)Miss Islington (bot)2018-02-271-22/+212
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (GH-5663)Miss Islington (bot)2018-02-271-0/+4
* [3.7] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5880)Miss Islington (bot)2018-02-251-20/+25
* [3.7] bpo-30622: Improve NPN support detection (GH-5859) (#5860)Miss Islington (bot)2018-02-241-8/+21
* [3.7] bpo-24334: Cleanup SSLSocket (GH-5252) (#5857)Miss Islington (bot)2018-02-241-30/+60
* [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843)Miss Islington (bot)2018-02-231-54/+77
* bpo-31429: Define TLS cipher suite on build time (#3532)Christian Heimes2018-01-291-1/+34
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-32/+140
* bpo-32598: Use autoconf to detect usable OpenSSL (#5242)Christian Heimes2018-01-201-0/+7
* completly -> completely (#3999) (closes bpo-31788)Semen Zhydenko2017-10-151-1/+1
* bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531)Christian Heimes2017-09-151-4/+4
* _ssl_: Fix compiler warning (#3559)Victor Stinner2017-09-141-1/+1
* bpo-31400: Improve SSL error handling on Windows (#3463)Steve Dower2017-09-081-10/+48
* bpo-28182: restore backwards compatibility (#3464)Christian Heimes2017-09-081-0/+5
* bpo-28182: Expose OpenSSL verification results (#3412)Christian Heimes2017-09-081-17/+91
* bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (#1363)Christian Heimes2017-09-071-0/+13
* bpo-28958: Improve SSLContext error reporting. (#3414)Christian Heimes2017-09-071-2/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-29/+1
* bpo-29781: Fix SSLObject.version before handshake (#3364)Christian Heimes2017-09-051-0/+4
* bpo-30102: Call OPENSSL_add_all_algorithms_noconf (#3112)Christian Heimes2017-09-051-1/+5
* bpo-30502: Fix handling of long oids in ssl. (#2909)Serhiy Storchaka2017-09-051-43/+47
* bpo-30622: Change NPN detection: (#2079)Melvyn Sopacua2017-09-041-7/+9
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-241-0/+3
* bpo-9566: Fixed _ssl module warnings (#2495)Segev Finer2017-07-261-6/+13
* [bpo-30916] Pre-build OpenSSL and Tcl/Tk for Windows (#2688)Steve Dower2017-07-171-1/+37
* Regenerate Argument Clinic code for bpo-19180. (#2073)Serhiy Storchaka2017-06-101-1/+1
* bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 (GH-148)Chandan Kumar2017-06-091-1/+1
* bpo-30594: Fixed refcounting in newPySSLSocket (#1992)Nathaniel J. Smith2017-06-081-2/+1
* Simplify X.509 extension handling code (#1855)Alex Gaynor2017-06-061-30/+4
* bpo-29334: Fix ssl.getpeercert for auto-handshake (#1769)Christian Heimes2017-05-231-19/+11