| Commit message (Expand) | Author | Age | Files | Lines |
* | Uncopy and unpaste dtls1_send_client_key_exchange() - the |  jsing | 2015-09-12 | 2 | -269/+5 |
* | Use explicit_bzero() instead of memset() when clearing private keys. |  jsing | 2015-09-12 | 1 | -3/+4 |
* | Pull variable assignment out from function call, fix indentation and set |  jsing | 2015-09-12 | 1 | -8/+7 |
* | style(9) and whitespace cleanups. |  jsing | 2015-09-12 | 1 | -29/+25 |
* | Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a |  jsing | 2015-09-11 | 12 | -65/+65 |
* | Merge the remnants of s3_enc.c into t1_enc.c. |  jsing | 2015-09-11 | 2 | -266/+123 |
* | Nuke ssl_set_peer_cert_type(). |  jsing | 2015-09-11 | 2 | -10/+2 |
* | Nuke ssl_bad_method(). |  jsing | 2015-09-11 | 2 | -11/+2 |
* | Nuke ssl3_default_timeout(). |  jsing | 2015-09-11 | 2 | -13/+2 |
* | Nuke ssl_replace_hash(). |  jsing | 2015-09-11 | 2 | -23/+2 |
* | Nuke ssl3_cbc_remove_padding(). |  jsing | 2015-09-11 | 2 | -34/+2 |
* | Nuke ssl3_alert_code(). |  jsing | 2015-09-11 | 2 | -74/+2 |
* | Nuke ssl3_cert_verify_mac() and ssl3_handshake_mac(). |  jsing | 2015-09-11 | 2 | -84/+2 |
* | Nuke ssl3_final_finish_mac(). |  jsing | 2015-09-11 | 2 | -19/+2 |
* | Nuke ssl3_change_cipher_state(). |  jsing | 2015-09-11 | 2 | -111/+2 |
* | Nuke ssl3_generate_master_secret(). |  jsing | 2015-09-11 | 2 | -36/+2 |
* | Nuke ssl3_setup_key_block() and ssl3_generate_key_block(). |  jsing | 2015-09-11 | 2 | -120/+2 |
* | Nuke n_ssl3_mac(). |  jsing | 2015-09-11 | 2 | -101/+2 |
* | Nuke ssl3_enc(). |  jsing | 2015-09-11 | 2 | -74/+2 |
* | Nuke SSLv3_enc_data. |  jsing | 2015-09-11 | 2 | -24/+3 |
* | Shuffle the code in ssl3_send_finished() to make it more logical/readable. |  jsing | 2015-09-11 | 1 | -9/+7 |
* | Replace dtls1_send_finished() with ssl3_send_finished() - they're now |  jsing | 2015-09-11 | 4 | -48/+6 |
* | style(9), fix comments, wrap long lines and tweak whitespace. |  jsing | 2015-09-11 | 1 | -31/+59 |
* | Convert dtls1_send_finished() and ssl3_send_finished() to |  jsing | 2015-09-11 | 2 | -22/+10 |
* | Put the *method* data structures and functions in the same place. |  jsing | 2015-09-11 | 2 | -137/+60 |
* | Put the *server_method* data structures and functions in the same place. |  jsing | 2015-09-11 | 2 | -74/+61 |
* | Put the *client_method* data structures and functions in the same place. |  jsing | 2015-09-11 | 2 | -74/+61 |
* | Remove support for DTLS_BAD_VER. We do not support non-standard and |  jsing | 2015-09-10 | 10 | -49/+23 |
* | Correct spelling of OPENSSL_cleanse. |  jsing | 2015-09-10 | 8 | -22/+22 |
* | Check handshake_func against NULL rather than 0, since it is a function |  jsing | 2015-09-09 | 1 | -7/+7 |
* | Replace dtls1_client_hello() with ssl3_client_hello() - both are basically |  jsing | 2015-09-02 | 3 | -106/+29 |
* | Fewer magic numbers - we already have defines for the header lengths, so |  jsing | 2015-09-02 | 1 | -5/+7 |
* | Remove duplicate prototype for SSL_get_selected_srtp_profile(). |  jsing | 2015-09-01 | 1 | -2/+1 |
* | Remove the ssl_prepare_{client,server}hello_tlsext() functions, which are |  jsing | 2015-09-01 | 5 | -34/+5 |
* | Make it always safe to call CBB_cleanup() providing that CBB_init() or |  jsing | 2015-09-01 | 1 | -2/+8 |
* | Now that SSLv3 is going away, TLS_* and SSLv23 are equivalent. |  doug | 2015-08-29 | 4 | -166/+7 |
* | Delete s3_meth.c since it was only for SSLv3 support. |  doug | 2015-08-29 | 1 | -103/+0 |
* | Remove SSLv3 method data structs and unlink s3_meth.c from the build. |  doug | 2015-08-29 | 2 | -81/+2 |
* | Change AEAD out_len argument to size_t instead of ssize_t - while here, |  jsing | 2015-08-27 | 1 | -10/+8 |
* | Remove SSLv3 support from LibreSSL. |  doug | 2015-08-27 | 10 | -98/+17 |
* | Properly handle missing TLS extensions in client hello as a non-failure. |  bcook | 2015-08-19 | 1 | -1/+3 |
* | Fix SRTP parsing. |  doug | 2015-07-31 | 1 | -3/+2 |
* | Add linker warnings in case SSLv3_{,client,server}_method are referenced. |  miod | 2015-07-29 | 3 | -3/+21 |
* | Convert tls1_process_ticket to CBS. |  doug | 2015-07-24 | 2 | -31/+38 |
* | Convert tls1_process_sigalgs to CBS. |  doug | 2015-07-24 | 1 | -5/+14 |
* | Convert ssl3_get_record to CBS. |  doug | 2015-07-24 | 1 | -22/+29 |
* | Remove duplicate check in libssl. |  doug | 2015-07-21 | 1 | -3/+1 |
* | Allow *_free() functions in libssl to handle NULL input. |  doug | 2015-07-19 | 5 | -5/+19 |
* | Convert ssl3_get_certificate_request to CBS. |  doug | 2015-07-19 | 1 | -31/+33 |
* | Fix symbol collision with libtls. |  doug | 2015-07-19 | 4 | -21/+21 |