summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* merge 3.4 (#24655)Benjamin Peterson2015-07-181-7/+7
|\
| * improve style of the convert macro (#24655)Benjamin Peterson2015-07-181-7/+7
* | Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-4/+4
* | Issue #20179: Converted the _ssl module to Argument Clinic.Serhiy Storchaka2015-05-031-479/+541
* | Issue #23853: Methods of SSL socket don't reset the socket timeout anymore eachVictor Stinner2015-04-061-17/+65
* | merge 3.4 (#23875)Benjamin Peterson2015-04-061-2/+2
|\ \ | |/
| * remove extra arguments in arg parsing format codes (closes #23875)Benjamin Peterson2015-04-061-2/+2
* | Issue #23853: Cleanup _ssl.cVictor Stinner2015-04-021-45/+50
* | Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner2015-03-301-2/+2
* | Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-301-3/+1
* | Issue #22117: Fix ssl to use _PyTime_t API on sock_timeoutVictor Stinner2015-03-281-11/+14
* | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-2/+6
* | Issue #23694: Enhance _Py_fopen(), it now raises an exception on errorVictor Stinner2015-03-181-4/+2
* | merge 3.4Benjamin Peterson2015-03-051-0/+4
|\ \ | |/
| * expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-051-0/+4
* | merge 3.4 (#23476)Benjamin Peterson2015-03-051-0/+9
|\ \ | |/
| * enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)Benjamin Peterson2015-03-051-0/+9
* | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SS...Antoine Pitrou2015-03-041-20/+0
|\ \ | |/
| * Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SS...Antoine Pitrou2015-03-041-20/+0
* | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-3/+4
|\ \ | |/
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-3/+4
| * Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-0/+4
* | ifdef our way to compatibility with old openssl (closes #23335)Benjamin Peterson2015-01-281-1/+1
* | disable ALPN on LibreSSL, which has a large version number, but not ALPN supp...Benjamin Peterson2015-01-271-1/+1
* | prefer server alpn ordering over the client'sBenjamin Peterson2015-01-231-13/+20
* | add support for ALPN (closes #20188)Benjamin Peterson2015-01-231-22/+110
* | use SSL_get_sessionBenjamin Peterson2015-01-071-2/+3
* | expose the client's cipher suites from the handshake (closes #23186)Benjamin Peterson2015-01-071-21/+51
* | Issue #23143: Remove compatibility with OpenSSLs older than 0.9.8.Antoine Pitrou2015-01-031-53/+0
* | merge 3.4 (#22935)Benjamin Peterson2014-12-061-0/+4
|\ \ | |/
| * allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-061-0/+4
* | Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2014-11-281-0/+4
* | merge 3.4 (#22921)Benjamin Peterson2014-11-231-12/+0
|\ \ | |/
| * don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-6/+0
* | Issue #21965: Add support for in-memory SSL to the ssl module.Antoine Pitrou2014-10-051-76/+456
* | Issue #20421: Add a .version() method to SSL sockets exposing the actual prot...Antoine Pitrou2014-09-041-0/+13
* | (Merge 3.4) Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" formatVictor Stinner2014-07-071-1/+1
|\ \ | |/
| * Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requiresVictor Stinner2014-07-071-1/+1
* | (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsingVictor Stinner2014-07-011-2/+9
|\ \ | |/
| * Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters.Victor Stinner2014-07-011-2/+9
* | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner2014-05-141-3/+1
|/
* Issue #21015: SSL contexts will now automatically select an elliptic curve fo...Antoine Pitrou2014-03-221-0/+15
* avoid a compiler warning about assigning const char * to char *.Gregory P. Smith2014-01-171-1/+1
|\
| * avoid a compiler warning about assigning const char * to char *.Gregory P. Smith2014-01-171-1/+1
* | Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly a...Antoine Pitrou2014-01-091-4/+5
|\ \ | |/
| * Remove conditional: it is useless at this point (OpenSSL headers are not yet ...Antoine Pitrou2014-01-091-2/+0
| * Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly a...Antoine Pitrou2014-01-091-2/+5
* | (Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() nowVictor Stinner2013-12-191-0/+5
|\ \ | |/
| * Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise aVictor Stinner2013-12-191-0/+5
* | Issue #19509: Add SSLContext.check_hostname to match the peer's certificateChristian Heimes2013-12-021-0/+35