| Commit message (Expand) | Author | Age | Files | Lines |
* | Add message callbacks for alerts in the TLSv1.3 stack. | jsing | 2024-01-27 | 1 | -3/+39 |
* | Make internal header file names consistent | tb | 2022-11-26 | 1 | -2/+2 |
* | Move tls13_exporter() code. | jsing | 2022-11-07 | 1 | -71/+1 |
* | Initial parsing of the NewSessionTicket message | tb | 2022-10-20 | 1 | -2/+103 |
* | Provide TLS13_MAX_TICKET_LIFETIME #define | tb | 2022-10-20 | 1 | -1/+8 |
* | Get rid of SSL_CTX_INTERNAL and SSL_INTERNAL. | jsing | 2022-10-02 | 1 | -8/+8 |
* | Provide a version of ssl_msg_callback() that takes a CBS. | jsing | 2022-09-10 | 1 | -3/+3 |
* | Provide record layer callbacks for QUIC. | jsing | 2022-07-24 | 1 | -9/+14 |
* | Move tls13_phh_done_cb() after tl13_phh_received_cb(). | jsing | 2022-07-24 | 1 | -12/+12 |
* | Provide QUIC encryption levels. | jsing | 2022-07-24 | 1 | -3/+5 |
* | Remove tls_buffer_set_data() and remove/revise callers. | jsing | 2022-07-20 | 1 | -10/+7 |
* | Correct server-side handling of TLSv1.3 key updates. | jsing | 2022-07-20 | 1 | -20/+30 |
* | Disable TLSv1.3 middlebox compatibility mode for QUIC connections. | jsing | 2022-07-17 | 1 | -2/+3 |
* | Pass SSL pointer to tls13_ctx_new(). | jsing | 2022-07-17 | 1 | -2/+6 |
* | Bye bye S3I. | jsing | 2022-02-05 | 1 | -3/+3 |
* | Implement flushing for TLSv1.3 handshakes. | jsing | 2021-09-16 | 1 | -1/+2 |
* | Call the ocsp callback if present and we get no response, instead of | beck | 2021-09-02 | 1 | -3/+2 |
* | Clean up and simplify info and msg callbacks. | jsing | 2021-08-30 | 1 | -10/+4 |
* | Avoid clobbering the error code when sending an alert | tb | 2021-04-07 | 1 | -2/+3 |
* | Move the TLSv1.3 handshake struct inside the shared handshake struct. | jsing | 2021-03-21 | 1 | -22/+22 |
* | Avoid a use-after-scope in tls13_cert_add(). | jsing | 2021-03-21 | 1 | -4/+3 |
* | Convert tls13_exporter() to tls13_secret_{init,cleanup}() | tb | 2021-01-05 | 1 | -8/+5 |
* | Implement exporter for TLSv1.3. | jsing | 2020-11-16 | 1 | -1/+73 |
* | Some SSL_AD_* defines snuck into the TLSv1.3 code - replace them with | jsing | 2020-09-11 | 1 | -3/+3 |
* | Add minimal info callback support for TLSv1.3 | tb | 2020-07-30 | 1 | -1/+15 |
* | Improve argument order for the internal tlsext API | tb | 2020-07-03 | 1 | -3/+3 |
* | Implement a rolling hash of the ClientHello message, Enforce RFC 8446 | beck | 2020-06-06 | 1 | -1/+80 |
* | Ensure we only attach an ocsp staple to a leaf certificate, because | beck | 2020-05-22 | 1 | -3/+9 |
* | Simplify: transform a dangling else into an early return and | tb | 2020-05-21 | 1 | -20/+20 |
* | Avoid a shadowing issue by renaming cbs and cbb to cbb_hs and cbb_hs, | tb | 2020-05-21 | 1 | -8/+7 |
* | A failure of tls13_handshake_msg_new() could lead to a NULL deref | tb | 2020-05-21 | 1 | -11/+15 |
* | Add support for TLS 1.3 server to send certificate status | beck | 2020-05-19 | 1 | -6/+6 |
* | Send alerts back correctly when handling key shares, including | beck | 2020-05-17 | 1 | -8/+19 |
* | Free handshake message correctly, noticed by tb@ | beck | 2020-05-17 | 1 | -2/+2 |
* | Provide an alert sent record layer callback. | jsing | 2020-05-11 | 1 | -3/+21 |
* | Move the record layer callbacks into a struct. | jsing | 2020-05-11 | 1 | -4/+10 |
* | Provide alert defines for TLSv1.3 and use in the TLSv1.3 code. | jsing | 2020-05-10 | 1 | -6/+6 |
* | Use size_t for OCSP response length. | jsing | 2020-05-10 | 1 | -2/+2 |
* | Correct tlsext_ocsp_resplen check. | jsing | 2020-05-10 | 1 | -2/+2 |
* | Add a middlebox_compat flag and condition session ID randomisation on it. | jsing | 2020-05-09 | 1 | -1/+3 |
* | Add support for certificate status requests in TLS 1.3 client | beck | 2020-05-09 | 1 | -1/+29 |
* | Rename tls13_client_synthetic_handshake_message() and move to tls13_lib.c. | jsing | 2020-04-28 | 1 | -1/+44 |
* | Consolidate TLSv1.3 constants. | jsing | 2020-04-21 | 1 | -23/+39 |
* | Move the TLSv1.3 code that interfaces with the legacy APIs/stack into a | jsing | 2020-02-15 | 1 | -308/+1 |
* | Rework tls13_legacy_handshake_message_{recv,sent}_cb() to use | tb | 2020-02-05 | 1 | -11/+17 |
* | If the TLSv1.3 code has not recorded an error and something already exists | jsing | 2020-01-29 | 1 | -1/+5 |
* | Move pad and verify context into tls13_lib.c | beck | 2020-01-26 | 1 | -1/+44 |
* | Support legacy message callbacks. First step for SSL_set_msg_callback(3) | tb | 2020-01-25 | 1 | -1/+28 |
* | Permit 0 length writes, because openssl s_client is special | beck | 2020-01-24 | 1 | -2/+2 |
* | Enable SSL_ENC_FLAG_SIGALGS on TLSv1_3_enc_data. | jsing | 2020-01-24 | 1 | -2/+2 |