summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_lib.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Provide SSL_CTX_get_min_proto_version and SSL_CTX_get_max_proto_versionjca2018-03-151-1/+13
* Provide SSL_CTX_get_tlsext_status_cb() and SSL_CTX_get_tlsext_status_arg().jsing2018-02-171-1/+15
* Convert ssl3_put_cipher_by_char() to CBB.jsing2018-01-271-9/+26
* Convert ssl3_send_change_cipher_spec() to use CBB and make it handle DTLS,jsing2017-10-081-3/+9
* Annotate some API-side memory leaks for future resolution.jsing2017-09-251-1/+3
* ECDHE-RSA-DES-CBC3-SHA should not be marked HIGH.jsing2017-08-281-2/+2
* Remove the original (pre-IETF) chacha20-poly1305 cipher suites.jsing2017-08-281-52/+1
* Remove NPN support.jsing2017-08-121-5/+1
* Remove support for DSS/DSA, since we removed the cipher suites a whilejsing2017-08-121-5/+1
* Convert ssl3_send_certificate_request() to CBB.jsing2017-08-111-16/+25
* Clean up the EC key/curve configuration handling.jsing2017-08-101-44/+14
* Consistently return from each SSL/SSL_CTX control case, rather thanjsing2017-08-091-33/+27
* Split out the remaining SSL_CTX controls into individual functions.jsing2017-08-091-40/+88
* Start splitting out SSL_CTX controls into individual functions, so thatjsing2017-08-091-71/+92
* Be consistent and return from each SSL control case, rather than breakingjsing2017-08-091-18/+10
* Split out the remaining SSL controls into individual functions.jsing2017-08-091-46/+93
* Split more controls into individual functions.jsing2017-08-091-64/+91
* Start splitting out controls into individual functions, so that they canjsing2017-08-091-29/+63
* Remove unnecessary curly braces and unindent. Also add a few blank linesjsing2017-08-091-11/+13
* Fix conditionals for DH controls.jsing2017-08-091-3/+3
* Remove unused variable.jsing2017-07-151-3/+3
* Drop cipher suites with DSS authentication - there is no good reason tojsing2017-05-071-197/+1
* Move state from ssl->internal to the handshake structure.beck2017-05-071-3/+3
* Bring in an SSL_HANDSHAKE structure and commence the great shovellingbeck2017-05-061-3/+3
* Provide SSL{,_CTX}_set_{min,max}_proto_version() functions.jsing2017-05-061-1/+21
* Use freezero() for the internal opaque structures, instead of the currentjsing2017-04-101-6/+3
* Use freezero() for X25519 keys - same result with more readable code.jsing2017-04-101-7/+3
* Remove the handshake digests and related code, replacing remaining usesjsing2017-03-101-3/+1
* Provide a rolling handshake hash that commences as soon as the cipherjsing2017-03-051-1/+6
* Drop the second argument of dtls1_set_message_header() and make it a voidjsing2017-03-041-3/+3
* Change SSLerror() back to taking two args, with the first one being an SSL *.beck2017-02-071-24/+24
* Define values for SSL_CTRL_SET_GROUPS{,_LIST} and wire them up to thejsing2017-02-051-1/+13
* Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the uglybeck2017-01-261-35/+18
* Send the error function codes to rot in the depths of hell where they belongbeck2017-01-261-24/+24
* sk_pop_free() checks for NULL so do not bother doing it from the callers.jsing2017-01-241-9/+5
* Add support for setting the supported EC curves viajsing2017-01-241-1/+30
* There is no point returning then breaking...jsing2017-01-241-2/+1
* Move options and mode from SSL_CTX and SSL to internal, since these can bejsing2017-01-231-4/+4
* Split most of SSL_METHOD out into an internal variant, which is opaque.jsing2017-01-231-8/+8
* send state and rstate from ssl_st into internal. There are accessorsbeck2017-01-231-4/+4
* Move a large part of ssl_st into internal, so we can see what squeals.beck2017-01-231-31/+31
* Move most of the fields in SSL_CTX to internal - the ones that remain arejsing2017-01-231-11/+11
* move the callbacks from ssl_st to internalbeck2017-01-231-7/+7
* Move callback function pointers and argument pointers from SSL_CTX tojsing2017-01-231-6/+6
* Move not_resumable and sess_cert from SSL_SESSION to internal.jsing2017-01-231-3/+3
* Move most of the SSL3_STATE fields to internal - the ones that remain arejsing2017-01-221-52/+58
* Move ALPN and NPN fields from SSL/SSL_CTX to internal.jsing2017-01-221-4/+4
* Convert publically visible structs to translucent structs.jsing2017-01-221-3/+15
* Clean up ssl3_new() - in particular, we do not need to zero fields thatjsing2017-01-221-11/+4
* There is no point in setting struct fields to zero, when you've alreadyjsing2017-01-221-5/+2