| Commit message (Expand) | Author | Age | Files | Lines |
* | oops, wrong dir. | tb | 2021-10-23 | 2 | -301/+0 |
* | Add new OpenSSL api SSL_write_ex, SSL_read_ex and SSL_peek_ex | beck | 2021-10-23 | 2 | -2/+86 |
* | Import documentation for X509_get_extension_flags, X509_get_key_usage, | tb | 2021-10-23 | 1 | -0/+211 |
* | Import documentation for X509_SIG_get{0,m} from OpenSSL. Will be linked | tb | 2021-10-23 | 1 | -0/+90 |
* | Mop up enc_read_ctx and read_hash. | jsing | 2021-10-23 | 4 | -40/+4 |
* | Provide a way to determine our maximum legacy version. | jsing | 2021-10-23 | 7 | -57/+62 |
* | Remove unused fields from struct dtls1_retransmit_state. | jsing | 2021-10-23 | 1 | -3/+1 |
* | Fold DTLS1_STATE_INTERNAL into DTLS1_STATE. | jsing | 2021-10-23 | 8 | -171/+154 |
* | tweak previous: properly mark up function pointer typedef | schwarze | 2021-10-23 | 1 | -6/+18 |
* | Change ssl_verify_cert_chain() for compatibility with opaque | tb | 2021-10-23 | 1 | -16/+19 |
* | Use X509_STORE_CTX_get0_chain() instead of grabbing the chain directly | tb | 2021-10-23 | 2 | -4/+4 |
* | Rename tls13_buffer to tls_buffer. | jsing | 2021-10-23 | 7 | -69/+111 |
* | Add SSL_CTX_set_keylog_callback and SSL_CTX_get_keylog_callback | beck | 2021-10-23 | 5 | -4/+67 |
* | Untangle ssl3_get_message() return values. | jsing | 2021-10-23 | 6 | -166/+139 |
* | Change tlsext_tick_lifetime_hint to uint32_t. | jsing | 2021-10-23 | 4 | -17/+11 |
* | Avoid potential NULL dereferences in dtls1_free() | tb | 2021-10-21 | 1 | -2/+7 |
* | Move various structs from ssl.h/tls1.h to ssl_locl.h. | jsing | 2021-10-15 | 3 | -140/+128 |
* | Implement flushing for TLSv1.3 handshakes. | jsing | 2021-09-16 | 5 | -7/+69 |
* | Avoid typedef redefinitionlibressl-v3.4.0 | inoguchi | 2021-09-14 | 1 | -3/+1 |
* | zap trailing white space | tb | 2021-09-14 | 1 | -2/+2 |
* | Call the info cb on connect/accept exit in TLSv1.3 | tb | 2021-09-14 | 2 | -4/+16 |
* | provide a small manual page for the SSL_set_psk_use_session_callback(3) | schwarze | 2021-09-14 | 2 | -1/+88 |
* | Merge the stub SSL_SESSION_is_resumable(3) manual page from the | schwarze | 2021-09-14 | 3 | -3/+86 |
* | merge the description of SSL_get_tlsext_status_type(3) | schwarze | 2021-09-11 | 1 | -3/+35 |
* | bump major after symbol addition and struct removal, struct visibility | tb | 2021-09-10 | 1 | -1/+1 |
* | Update Symbols.list after API additions | tb | 2021-09-10 | 1 | -0/+18 |
* | Move SSL_set0_rbio() outside of LIBRESSL_HAS_TLS1_3 | tb | 2021-09-10 | 1 | -3/+1 |
* | Expose SSL_get_tlext_status_type() in tls1.h | tb | 2021-09-10 | 1 | -3/+1 |
* | Expose SSL_R_NO_APPLICATION_PROTOCOL in ssl.h | tb | 2021-09-10 | 1 | -3/+1 |
* | Expose SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE in ssl.h | tb | 2021-09-10 | 1 | -3/+1 |
* | Expose SSL_CTX_get0_privatekey() in ssl.h | tb | 2021-09-10 | 1 | -3/+1 |
* | Remove TLS1_get_{,client_}version() | tb | 2021-09-10 | 1 | -9/+1 |
* | Remove SSL3_RECORD and SSL3_BUFFER | tb | 2021-09-10 | 1 | -25/+1 |
* | Remove TLS1_RT_HEARTBEAT | tb | 2021-09-10 | 1 | -2/+1 |
* | Make SSL opaque | tb | 2021-09-10 | 1 | -2/+4 |
* | Remove struct tls_session_ticket_ext_st and TLS_SESSION_TICKET_EXT | tb | 2021-09-10 | 2 | -2/+6 |
* | Do not ignore SSL_TLSEXT_ERR_FATAL from the ALPN callback | tb | 2021-09-10 | 4 | -7/+31 |
* | Prepare to provide SSL_CTX_get0_privatekey() | tb | 2021-09-10 | 2 | -2/+14 |
* | Provide SSL_SESSION_is_resumable and SSL_set_psk_use_session_callback stubs | tb | 2021-09-08 | 3 | -3/+24 |
* | Prepare to provide API stubs for PHA | tb | 2021-09-08 | 2 | -2/+27 |
* | Prepare to provide SSL_get_tlsext_status_type() | tb | 2021-09-08 | 3 | -3/+20 |
* | Prepare to provide SSL_set0_rbio() | tb | 2021-09-08 | 2 | -2/+12 |
* | Factor out the TLSv1.3 code that handles content from TLS records. | jsing | 2021-09-04 | 6 | -80/+238 |
* | Refactor ssl_update_cache. This now matches the logic used for TLS 1.3 | beck | 2021-09-04 | 1 | -22/+106 |
* | Improve DTLS hello request handling code. | jsing | 2021-09-04 | 1 | -2/+8 |
* | Change dtls1_get_message_header() to take a CBS. | jsing | 2021-09-04 | 3 | -22/+21 |
* | Improve DTLS record header parsing. | jsing | 2021-09-04 | 1 | -7/+7 |
* | Use SSL3_HM_HEADER_LENGTH instead of the magic number 4. | jsing | 2021-09-03 | 1 | -13/+14 |
* | Ensure that a server hello does not have trailing data. | jsing | 2021-09-03 | 1 | -1/+4 |
* | Ensure that a client hello does not have trailing data. | jsing | 2021-09-03 | 1 | -1/+4 |