| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename s3_{both,clnt,pkt_srvr}.c to have an ssl_ prefix since they are no | jsing | 2017-01-26 | 1 | -2923/+0 |
* | Merge the client/server version negotiation into the existing (currently | jsing | 2017-01-26 | 1 | -7/+18 |
* | sk_pop_free() checks for NULL so do not bother doing it from the callers. | jsing | 2017-01-24 | 1 | -5/+4 |
* | Remove unused cert variable. | jsing | 2017-01-24 | 1 | -3/+1 |
* | sk_SSL_CIPHER_free() checks for NULL so do not bother doing the same from | jsing | 2017-01-24 | 1 | -10/+6 |
* | Move options and mode from SSL_CTX and SSL to internal, since these can be | jsing | 2017-01-23 | 1 | -4/+4 |
* | Split most of SSL_METHOD out into an internal variant, which is opaque. | jsing | 2017-01-23 | 1 | -16/+16 |
* | send state and rstate from ssl_st into internal. There are accessors | beck | 2017-01-23 | 1 | -59/+59 |
* | Move a large part of ssl_st into internal, so we can see what squeals. | beck | 2017-01-23 | 1 | -75/+75 |
* | Move most of the fields in SSL_CTX to internal - the ones that remain are | jsing | 2017-01-23 | 1 | -8/+8 |
* | move the callbacks from ssl_st to internal | beck | 2017-01-23 | 1 | -9/+9 |
* | Move callback function pointers and argument pointers from SSL_CTX to | jsing | 2017-01-23 | 1 | -8/+8 |
* | Move not_resumable and sess_cert from SSL_SESSION to internal. | jsing | 2017-01-23 | 1 | -7/+7 |
* | Move the stats struct from SSL_CTX to internal. | jsing | 2017-01-23 | 1 | -4/+4 |
* | Move most of the SSL3_STATE fields to internal - the ones that remain are | jsing | 2017-01-22 | 1 | -76/+76 |
* | Move most of DTLS1_STATE to internal. | beck | 2017-01-22 | 1 | -6/+6 |
* | Move ALPN and NPN fields from SSL/SSL_CTX to internal. | jsing | 2017-01-22 | 1 | -5/+5 |
* | Add support for ECDHE with X25519. | jsing | 2016-12-21 | 1 | -5/+112 |
* | Ensure that we zero memory that contiansthe ASN.1 encoded session, since | jsing | 2016-12-07 | 1 | -26/+29 |
* | Convert certificate handshake message generation to CBB, with some clean | jsing | 2016-12-06 | 1 | -7/+22 |
* | Convert ssl3_send_server_hello() to CBB. | jsing | 2016-12-04 | 1 | -18/+38 |
* | Avoid signed vs unsigned warnings from clang by adding two casts, | jsing | 2016-12-03 | 1 | -2/+2 |
* | Convert ssl3_get_client_kex_dhe() to CBS and perform some general code | jsing | 2016-11-17 | 1 | -38/+29 |
* | Split ssl3_get_client_key_exchange() into separate per algorithm functions. | jsing | 2016-11-06 | 1 | -320/+388 |
* | Remove pointless check - without fixed ECDH, there is only one way to reach | jsing | 2016-11-06 | 1 | -8/+1 |
* | Split out the DHE and ECDHE code paths from | jsing | 2016-11-06 | 1 | -203/+221 |
* | Do a partial CBB conversion of ssl3_send_server_key_exchange(), which will | jsing | 2016-11-05 | 1 | -52/+67 |
* | Remove support for fixed ECDH cipher suites - these is not widely supported | jsing | 2016-10-19 | 1 | -15/+7 |
* | Check for packet with truncated DTLS cookie. | guenther | 2016-09-22 | 1 | -12/+17 |
* | deprecate internal use of EVP_[Cipher|Encrypt|Decrypt]_Final. | beck | 2016-05-30 | 1 | -2/+2 |
* | X509_free(3) is NULL-safe, so remove NULL checks before its calls. | mmcc | 2016-03-11 | 1 | -5/+3 |
* | deprecate SSL_OP_SINGLE_DH_USElibressl-v2.3.2 | beck | 2016-01-27 | 1 | -20/+5 |
* | Use ECDH_size() instead of rolling our own. | jsing | 2015-09-13 | 1 | -6/+6 |
* | The *_accept() functions increment in_handshake at the start of the function, | jsing | 2015-09-13 | 1 | -16/+25 |
* | Remove most of the SSLv3 version checks and a few TLS v1.0. | doug | 2015-09-12 | 1 | -37/+24 |
* | Move handshake message header length determination into a separate | jsing | 2015-09-12 | 1 | -5/+8 |
* | Convert the rest of the server handshake functions to ssl3_handshake_msg_*. | jsing | 2015-09-12 | 1 | -44/+35 |
* | Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a | jsing | 2015-09-11 | 1 | -9/+9 |
* | Remove support for DTLS_BAD_VER. We do not support non-standard and | jsing | 2015-09-10 | 1 | -2/+2 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 1 | -4/+4 |
* | Remove the ssl_prepare_{client,server}hello_tlsext() functions, which are | jsing | 2015-09-01 | 1 | -6/+1 |
* | Remove SSLv3 method data structs and unlink s3_meth.c from the build. | doug | 2015-08-29 | 1 | -41/+1 |
* | Remove SSLv3 support from LibreSSL. | doug | 2015-08-27 | 1 | -15/+1 |
* | Add linker warnings in case SSLv3_{,client,server}_method are referenced. | miod | 2015-07-29 | 1 | -1/+7 |
* | Remove support for the SSL_OP_TLS_D5_BUG compat hack from SSLeay. | doug | 2015-07-18 | 1 | -8/+4 |
* | Convert ssl3_get_client_certificate to CBS. | doug | 2015-07-14 | 1 | -15/+19 |
* | Convert ssl3_get_next_proto to CBS. | doug | 2015-06-20 | 1 | -14/+19 |
* | Remove Microsoft Server Gated Crypto. | doug | 2015-06-18 | 1 | -56/+7 |
* | KNF whitespace. | doug | 2015-06-17 | 1 | -2/+3 |
* | Remove ancient SSL_OP_NETSCAPE_CA_DN_BUG from SSLeay days. | doug | 2015-06-15 | 1 | -15/+5 |