summaryrefslogtreecommitdiff
path: root/lib/libssl/d1_clnt.c
AgeCommit message (Expand)Author
2018-11-05Consolidate all of the SSL method structs/functions into a single file.Joel Sing
2018-08-30Nuke ssl_pending/ssl_shutdown function pointers.Joel Sing
2018-04-07Remove function pointers for ssl_{read,write,peek}.Joel Sing
2017-10-10Merge dtls1_connect() into ssl3_connect(), removing a large amount ofJoel Sing
2017-10-08Reduce non-functional differences between dtls1_connect() andJoel Sing
2017-10-08Convert ssl3_send_change_cipher_spec() to use CBB and make it handle DTLS,Joel Sing
2017-05-07Move state from ssl->internal to the handshake structure.Bob Beck
2017-05-06Bring in an SSL_HANDSHAKE structure and commence the great shovellingBob Beck
2017-02-07Change SSLerror() back to taking two args, with the first one being an SSL *.Bob Beck
2017-01-26Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the uglyBob Beck
2017-01-26Send the error function codes to rot in the depths of hell where they belongBob Beck
2017-01-26Remove most of SSL3_ENC_METHOD - we can just inline the function callsJoel Sing
2017-01-26Merge the client/server version negotiation into the existing (currentlyJoel Sing
2017-01-23Split most of SSL_METHOD out into an internal variant, which is opaque.Joel Sing
2017-01-23Remove ssl_ctrl, ssl_ctx_ctrl, ssl_callback_ctrl and ssl_ctx_callback_ctrlJoel Sing
2017-01-23send state and rstate from ssl_st into internal. There are accessorsBob Beck
2017-01-23Move a large part of ssl_st into internal, so we can see what squeals.Bob Beck
2017-01-23move the callbacks from ssl_st to internalBob Beck
2017-01-23Move callback function pointers and argument pointers from SSL_CTX toJoel Sing
2017-01-23Move the stats struct from SSL_CTX to internal.Joel Sing
2017-01-22Move most of the SSL3_STATE fields to internal - the ones that remain areJoel Sing
2017-01-22Move most of DTLS1_STATE to internal.Bob Beck
2017-01-21Specify minimum and maximum protocol version for each method. This isJoel Sing
2016-12-06Now that ssl3_send_{client,server}_certificate() are using the commonJoel Sing
2016-11-04Rename ssl3_get_key_exchange() to ssl3_get_server_key_exchange(), sinceJoel Sing
2016-11-04The *_method_data structures can be staticPhilip Guenther
2016-03-11X509_free(3) is NULL-safe, so remove NULL checks before its calls.Michael McConville
2015-09-12Remove most of the SSLv3 version checks and a few TLS v1.0.Doug Hogan
2015-09-12Uncopy and unpaste dtls1_send_client_verify() - theJoel Sing
2015-09-12Uncopy and unpaste dtls1_send_client_key_exchange() - theJoel Sing
2015-09-11Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of aJoel Sing
2015-09-11Replace dtls1_send_finished() with ssl3_send_finished() - they're nowJoel Sing
2015-09-10Remove support for DTLS_BAD_VER. We do not support non-standard andJoel Sing
2015-09-10Correct spelling of OPENSSL_cleanse.Joel Sing
2015-09-02Replace dtls1_client_hello() with ssl3_client_hello() - both are basicallyJoel Sing
2015-07-15Flense out dead code, we don't do ecdhe_clnt_cert.Bob Beck
2015-07-14Convert dtls1_get_hello_verify to CBS.Doug Hogan
2015-06-13Fix bad indenting in LibreSSL.Doug Hogan
2015-03-27Factor out the init_buf initialisation code, rather than duplicating itJoel Sing
2015-02-09Jettison DTLS over SCTP.Joel Sing
2015-02-06Bring back the horrible API that is get_cipher_by_char/put_cipher_by_char.Joel Sing
2014-12-14Convert all of the straight forward client handshake handling code to useJoel Sing
2014-12-10ssl3_init_finished_mac() calls BIO_new() which can fail since it in turnJoel Sing
2014-12-06Remove client handling of RSA in ServerKeyExchange messages, along withJoel Sing
2014-11-27Avoid a NULL dereference in the DTLS client that can be triggered by aJoel Sing
2014-11-16Sort and group includes.Joel Sing
2014-10-18Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().Joel Sing
2014-09-07Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them,Joel Sing
2014-08-10Since we no longer need to support SSLv2-style cipher lists, startJoel Sing
2014-08-07Oops, revert changes commited by mistake. The previous commit was supposedMiod Vallat