| Commit message (Expand) | Author | Age | Files | Lines |
* | Change SSLerror() back to taking two args, with the first one being an SSL *. | beck | 2017-02-07 | 1 | -4/+4 |
* | Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the ugly | beck | 2017-01-26 | 1 | -3/+2 |
* | Send the error function codes to rot in the depths of hell where they belong | beck | 2017-01-26 | 1 | -4/+4 |
* | Remove most of SSL3_ENC_METHOD - we can just inline the function calls | jsing | 2017-01-26 | 1 | -5/+5 |
* | Merge the client/server version negotiation into the existing (currently | jsing | 2017-01-26 | 1 | -3/+2 |
* | Split most of SSL_METHOD out into an internal variant, which is opaque. | jsing | 2017-01-23 | 1 | -14/+18 |
* | Remove ssl_ctrl, ssl_ctx_ctrl, ssl_callback_ctrl and ssl_ctx_callback_ctrl | jsing | 2017-01-23 | 1 | -5/+1 |
* | send state and rstate from ssl_st into internal. There are accessors | beck | 2017-01-23 | 1 | -36/+36 |
* | Move a large part of ssl_st into internal, so we can see what squeals. | beck | 2017-01-23 | 1 | -41/+41 |
* | move the callbacks from ssl_st to internal | beck | 2017-01-23 | 1 | -6/+6 |
* | Move callback function pointers and argument pointers from SSL_CTX to | jsing | 2017-01-23 | 1 | -3/+3 |
* | Move the stats struct from SSL_CTX to internal. | jsing | 2017-01-23 | 1 | -5/+5 |
* | Move most of the SSL3_STATE fields to internal - the ones that remain are | jsing | 2017-01-22 | 1 | -20/+20 |
* | Move most of DTLS1_STATE to internal. | beck | 2017-01-22 | 1 | -13/+13 |
* | Specify minimum and maximum protocol version for each method. This is | jsing | 2017-01-21 | 1 | -1/+3 |
* | Now that ssl3_send_{client,server}_certificate() are using the common | jsing | 2016-12-06 | 1 | -67/+2 |
* | Rename ssl3_get_key_exchange() to ssl3_get_server_key_exchange(), since | jsing | 2016-11-04 | 1 | -2/+2 |
* | The *_method_data structures can be static | guenther | 2016-11-04 | 1 | -2/+2 |
* | X509_free(3) is NULL-safe, so remove NULL checks before its calls. | mmcc | 2016-03-11 | 1 | -3/+2 |
* | Remove most of the SSLv3 version checks and a few TLS v1.0. | doug | 2015-09-12 | 1 | -11/+3 |
* | Uncopy and unpaste dtls1_send_client_verify() - the | jsing | 2015-09-12 | 1 | -72/+2 |
* | Uncopy and unpaste dtls1_send_client_key_exchange() - the | jsing | 2015-09-12 | 1 | -267/+4 |
* | Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a | jsing | 2015-09-11 | 1 | -3/+3 |
* | Replace dtls1_send_finished() with ssl3_send_finished() - they're now | jsing | 2015-09-11 | 1 | -2/+2 |
* | Remove support for DTLS_BAD_VER. We do not support non-standard and | jsing | 2015-09-10 | 1 | -4/+3 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 1 | -2/+2 |
* | Replace dtls1_client_hello() with ssl3_client_hello() - both are basically | jsing | 2015-09-02 | 1 | -99/+6 |
* | Flense out dead code, we don't do ecdhe_clnt_cert. | beck | 2015-07-15 | 1 | -89/+35 |
* | Convert dtls1_get_hello_verify to CBS. | doug | 2015-07-14 | 1 | -17/+23 |
* | Fix bad indenting in LibreSSL. | doug | 2015-06-13 | 1 | -2/+2 |
* | Factor out the init_buf initialisation code, rather than duplicating it | jsing | 2015-03-27 | 1 | -20/+6 |
* | Jettison DTLS over SCTP. | jsing | 2015-02-09 | 1 | -145/+1 |
* | Bring back the horrible API that is get_cipher_by_char/put_cipher_by_char. | jsing | 2015-02-06 | 1 | -1/+3 |
* | Convert all of the straight forward client handshake handling code to use | jsing | 2014-12-14 | 1 | -52/+19 |
* | ssl3_init_finished_mac() calls BIO_new() which can fail since it in turn | jsing | 2014-12-10 | 1 | -2/+5 |
* | Remove client handling of RSA in ServerKeyExchange messages, along with | jsing | 2014-12-06 | 1 | -14/+10 |
* | Avoid a NULL dereference in the DTLS client that can be triggered by a | jsing | 2014-11-27 | 1 | -1/+9 |
* | Sort and group includes. | jsing | 2014-11-16 | 1 | -4/+6 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-18 | 1 | -5/+3 |
* | Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, | jsing | 2014-09-07 | 1 | -2/+2 |
* | Since we no longer need to support SSLv2-style cipher lists, start | jsing | 2014-08-10 | 1 | -4/+2 |
* | Oops, revert changes commited by mistake. The previous commit was supposed | miod | 2014-08-07 | 1 | -4/+4 |
* | When you expect a function to return a particular value, don't put a comment | miod | 2014-08-07 | 1 | -4/+4 |
* | The correct name for EDH is DHE, likewise EECDH should be ECDHE. | jsing | 2014-07-12 | 1 | -3/+3 |
* | Remove remnants from PSK, KRB5 and SRP. | jsing | 2014-07-12 | 1 | -4/+4 |
* | As reported by David Ramos, most consumer of ssl_get_message() perform late | miod | 2014-07-11 | 1 | -1/+9 |
* | Remove the PSK code. We don't need to drag around this | beck | 2014-07-11 | 1 | -78/+1 |
* | decompress libssl. ok beck jsing | tedu | 2014-07-10 | 1 | -22/+4 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
* | http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2016265dfbab162ec... | deraadt | 2014-06-07 | 1 | -2/+1 |