Age | Commit message (Expand) | Author |
2019-04-25 | Use calloc/freezero when allocating and freeing the session ticket data. | Joel Sing |
2019-04-25 | Use EVP_CIPHER_CTX_{new,free}() and HMAC_CTX_{new,free}() instead of | Joel Sing |
2019-04-25 | Rename some variables in tls_decrypt_ticket(). | Joel Sing |
2019-04-23 | Convert tls_decrypt_ticket() to CBS. | Joel Sing |
2019-04-22 | Provide a derr label (decode/decrypt error) in tls1_decrypt_ticket(). | Joel Sing |
2019-04-22 | Pass the session ID down to the session/ticket handling code as a CBS. | Joel Sing |
2019-04-22 | Inline and remove the tlsext_tick_md macro. | Joel Sing |
2019-04-21 | Clean up tls1_process_ticket(). | Joel Sing |
2019-04-21 | Cleanup more of tls_decrypt_ticket(). | Joel Sing |
2019-04-21 | Start cleaning up tls_decrypt_ticket(). | Joel Sing |
2019-04-13 | Avoid leak in SSL_dup_CA_list() | Theo Buehler |
2019-04-09 | Recommend SSL_CTX_add1_chain_cert(3) rather than | Ingo Schwarze |
2019-04-09 | Document SSL_CTX_clear_mode(3) and SSL_clear_mode(3). | Ingo Schwarze |
2019-04-05 | By design, our state machine is a DAG contrary to the state machine in | Theo Buehler |
2019-04-05 | Import SSL_CTX_add1_chain_cert(3) from OpenSSL branch 1.1.1, which is still | Ingo Schwarze |
2019-04-05 | Zap two dead #defines that were unused since jsing deleted the | Theo Buehler |
2019-04-04 | Implement legacy fallback for the TLS 1.3 client. | Joel Sing |
2019-04-04 | Clean up the cipher/digest table mess. | Joel Sing |
2019-04-04 | Bump libssl/libtls minors due to symbol addition. | Joel Sing |
2019-04-04 | Provide SSL chain/cert chain APIs. | Joel Sing |
2019-04-04 | This case also needs to be fatal. | Joel Sing |
2019-04-01 | mark ERR_R_INTERNAL_ERROR instead of assert or _exit, sigh | Theo de Raadt |
2019-04-01 | Correct subtle bug in sigalgs, only care about curve_nid if we are | Bob Beck |
2019-03-31 | Clean up and simplify the client verify code: | Joel Sing |
2019-03-25 | Strip out all of the pkey to sigalg and sigalg to pkey linkages. | Joel Sing |
2019-03-25 | tls1_process_sigalgs() is no longer needed. | Joel Sing |
2019-03-25 | Defer sigalgs selection until the certificate is known. | Joel Sing |
2019-03-25 | Rework ssl_ctx_use_certificate_chain_bio() to use the CERT_PKEY chain. | Joel Sing |
2019-03-25 | Remove ssl_get_server_send_cert() which is now unused. | Joel Sing |
2019-03-25 | Rework ssl3_output_cert_chain() to take a CERT_PKEY and consider chains. | Joel Sing |
2019-03-25 | Add a chain member to CERT_PKEY and provide functions for manipulating it. | Joel Sing |
2019-03-24 | If ssl_cipher_apply_rule() is given a specific cipher suite, match on it. | Joel Sing |
2019-03-24 | do not call assert(), which has a tendency to leave traces of stuff in | Theo de Raadt |
2019-03-19 | Avoid an internal 2 byte overread in ssl_sigalgs(). | Joel Sing |
2019-03-19 | Revert TLS1_get{,_client}_version simplification because DTLS. | Joel Sing |
2019-03-18 | * note that the handshake must be completed first | Ingo Schwarze |
2019-03-18 | In ssl.h rev. 1.165, tb@ provided version agnostic DTLS methods. | Ingo Schwarze |
2019-03-17 | bump minors after symbol addition | Theo Buehler |
2019-03-17 | Provide version agnostic DTLS methods. | Joel Sing |
2019-03-17 | Correct return value handling in tls13_handshake_recv_action(). | Joel Sing |
2019-03-17 | Partially clean up the TLS1_get_{,client}_version macros. | Joel Sing |
2019-03-17 | Remove the alert level from the TLSv1.3 alert callback. | Joel Sing |
2019-03-04 | Don't index a void pointer, fixes compilation with visual studio. | Todd C. Miller |
2019-02-28 | Implement non-SSL_MODE_ENABLE_PARTIAL_WRITE in tls13_legacy_write_bytes(). | Joel Sing |
2019-02-28 | Automatically complete the handshake from tls13_legacy_{read,write}_bytes() | Joel Sing |
2019-02-28 | Set the SSL state as part of tls13_legacy_connect(). | Joel Sing |
2019-02-28 | Add appropriate length checks to tls13_legacy_{read,write}_bytes() | Joel Sing |
2019-02-28 | Remove unused record_type from TLSv1.3 handshake actions. | Joel Sing |
2019-02-26 | Correct return values for non-fatal alerts. | Joel Sing |
2019-02-26 | Correctly propagate EOF from BIO in tls13_legacy_wire_read(). | Joel Sing |