| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge SSL_METHOD_INTERNAL into SSL_METHOD. | jsing | 2021-07-01 | 1 | -3/+3 |
* | Indent all labels with a single space. | jsing | 2021-06-11 | 1 | -2/+2 |
* | Make local header inclusion consistent. | jsing | 2021-05-16 | 1 | -3/+2 |
* | Mark nid_list[] const. This moves 116 bytes to .rodata. | tb | 2020-12-05 | 1 | -2/+2 |
* | SSL3_ENC_METHOD is just a flag word; merge it into SSL_METHOD_INTERNAL | guenther | 2020-10-11 | 1 | -14/+1 |
* | Mop up various things that are now unused with the new record layer. | jsing | 2020-10-07 | 1 | -4/+4 |
* | Simplify tls1_set_ec_id() a bit | tb | 2020-09-12 | 1 | -24/+19 |
* | Garbage collect renew_ticket in tls_decrypt_ticket | tb | 2020-09-07 | 1 | -8/+5 |
* | copy session id directly in ssl_get_prev_session | tb | 2020-09-01 | 1 | -21/+5 |
* | Hoist ERR_clear_error() call into the derr: label | tb | 2020-09-01 | 1 | -4/+2 |
* | simplify tls1_process_ticket() exit path | tb | 2020-09-01 | 1 | -17/+6 |
* | Return code tweaks for session ticket handlers | tb | 2020-08-31 | 1 | -37/+36 |
* | Send alert on ssl_get_prev_session failure | tb | 2020-08-31 | 1 | -8/+18 |
* | Add P-521 to the list of curves supported by default in the client. | jsing | 2020-08-09 | 1 | -5/+18 |
* | Remove some unnecessary function pointers from SSL_METHOD_INTERNAL. | jsing | 2020-07-07 | 1 | -9/+1 |
* | Mop up servername_done, which is unused. | jsing | 2020-05-29 | 1 | -5/+1 |
* | Use size_t for OCSP response length. | jsing | 2020-05-10 | 1 | -5/+4 |
* | Remove the enc function pointers. | jsing | 2020-03-10 | 1 | -4/+1 |
* | Use calloc/freezero when allocating and freeing the session ticket data. | jsing | 2019-04-25 | 1 | -4/+6 |
* | Use EVP_CIPHER_CTX_{new,free}() and HMAC_CTX_{new,free}() instead of | jsing | 2019-04-25 | 1 | -24/+29 |
* | Rename some variables in tls_decrypt_ticket(). | jsing | 2019-04-25 | 1 | -18/+18 |
* | Convert tls_decrypt_ticket() to CBS. | jsing | 2019-04-23 | 1 | -44/+72 |
* | Provide a derr label (decode/decrypt error) in tls1_decrypt_ticket(). | jsing | 2019-04-22 | 1 | -41/+29 |
* | Pass the session ID down to the session/ticket handling code as a CBS. | jsing | 2019-04-22 | 1 | -18/+20 |
* | Inline and remove the tlsext_tick_md macro. | jsing | 2019-04-22 | 1 | -2/+2 |
* | Clean up tls1_process_ticket(). | jsing | 2019-04-21 | 1 | -39/+43 |
* | Cleanup more of tls_decrypt_ticket(). | jsing | 2019-04-21 | 1 | -5/+9 |
* | Start cleaning up tls_decrypt_ticket(). | jsing | 2019-04-21 | 1 | -58/+63 |
* | tls1_process_sigalgs() is no longer needed. | jsing | 2019-03-25 | 1 | -55/+1 |
* | Modify sigalgs extension processing to accomodate TLS 1.3. | beck | 2019-01-23 | 1 | -5/+5 |
* | revert previous, accidentally contained another diff in addition | beck | 2019-01-23 | 1 | -5/+5 |
* | Modify sigalgs extension processing for TLS 1.3. | beck | 2019-01-23 | 1 | -5/+5 |
* | Stop keeping track of sigalgs by guessing it from digest and pkey, | beck | 2018-11-10 | 1 | -19/+23 |
* | Reimplement the sigalgs processing code into a new implementation | beck | 2018-11-09 | 1 | -173/+18 |
* | Stop pretending that a cert member in a SSL and SSL_CTX can be NULL. | jsing | 2018-11-08 | 1 | -5/+1 |
* | Rename the TLS Supported Elliptic Curves extension to Supported Groups. | jsing | 2018-11-05 | 1 | -29/+29 |
* | Clean up the code that checks if we can choose an EC cipher suite. | jsing | 2018-11-05 | 1 | -12/+1 |
* | Mop up ecdh_tmp, since it is no longer used. | jsing | 2018-11-05 | 1 | -11/+2 |
* | Simplify session ticket parsing/handling. | jsing | 2018-08-24 | 1 | -44/+21 |
* | Rename and collapse tls12_get_sigandhash_cbb(). | jsing | 2018-08-19 | 1 | -29/+21 |
* | Convert ssl3_send_server_key_exchange() to CBB. | jsing | 2018-08-16 | 1 | -2/+23 |
* | Complete the TLS extension rewrite on the client-side. | jsing | 2018-02-08 | 1 | -74/+1 |
* | Complete the TLS extension handling rewrite for the server-side. | jsing | 2018-01-27 | 1 | -70/+1 |
* | Convert ssl3_client_hello() to CBB. | jsing | 2017-10-11 | 1 | -24/+1 |
* | Fully convert ssl3_send_server_hello() to CBB. | jsing | 2017-10-11 | 1 | -24/+1 |
* | Move the full extension building into tlsext_{client,server}hello_build(), | jsing | 2017-08-30 | 1 | -34/+9 |
* | Rewrite SRTP extension using CBB/CBS and the new extension framework. | doug | 2017-08-27 | 1 | -57/+1 |
* | Rewrite ALPN extension using CBB/CBS and the new extension framework. | doug | 2017-08-26 | 1 | -139/+1 |
* | match function implementation with declaration, ok beck@, doug@ | bcook | 2017-08-13 | 1 | -2/+2 |
* | Remove support for the TLS padding extension. | jsing | 2017-08-13 | 1 | -35/+1 |