Age | Commit message (Expand) | Author |
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 |
2019-02-25 | Fix gcc3 compilation error by using a forward declaration instead of a | Theo Buehler |
2019-02-25 | revert "Move struct ssl_handshake_tls13_st definition", i.e., move | Theo Buehler |
2019-02-25 | Correctly handle oversize writes. | Joel Sing |
2019-02-25 | Add a handshake action sent handler and use it for client finished. | Joel Sing |
2019-02-25 | Correct a few error returns. | Joel Sing |
2019-02-25 | Move struct ssl_handshake_tls13_st definition | Kinichiro Inoguchi |
2019-02-23 | Remove temporary gotos. | Joel Sing |
2019-02-23 | Set BIO retry on TLS13_IO_WANT_POLLIN/TLS13_IO_WANT_POLLOUT. | Joel Sing |
2019-02-21 | Wire up alert handling for TLSv1.3. | Joel Sing |
2019-02-21 | Change the alert callback return type from int to void. | Joel Sing |
2019-02-21 | Fix a few cases where int was used instead of ssize_t. | Joel Sing |
2019-02-14 | Correct guards. | Joel Sing |
2019-02-14 | Notify the record layer upon handshake completion. | Joel Sing |
2019-02-14 | Switch to application traffic keys as appropriate. | Joel Sing |
2019-02-14 | Split tls13_record_layer_set_traffic_keys() into two separate functions. | Joel Sing |
2019-02-14 | Provide a TLS 1.3 capable client method. | Joel Sing |
2019-02-13 | Clean up some pesky trailing whitespace. | Joel Sing |
2019-02-13 | Handle finished messages in TLSv1.3 client. | Joel Sing |
2019-02-11 | Implement handling of Certificate and CertificateVerify messages. | Joel Sing |
2019-02-10 | "non-existant" is one of those words that don't exist, so use "non-existent" | Peter Hessler |
2019-02-10 | Preserve the transcript hash at specific stages of the TLSv1.3 handshake. | Joel Sing |
2019-02-09 | Rename the file that contains the transcript handling code. | Joel Sing |
2019-02-09 | Rename tls1_handshake_hash*() to tls1_transcript_hash*(). | Joel Sing |
2019-02-09 | Provide a reference from the TLSv1.3 context to the handshake state. | Joel Sing |
2019-02-07 | Implement processing of EncryptedExtensions in the TLS 1.3 client. | Joel Sing |
2019-02-04 | Implement parsing and processing of TLSv1.3 ServerHello messages. | Joel Sing |
2019-02-04 | Make it easier to build with LIBRESSL_HAS_TLS1_3 enabled. | Joel Sing |
2019-02-03 | Revert r1.38 as it introduces use of a stack value post function return. | Joel Sing |
2019-01-31 | unwrap a line introduced in previous. | Theo Buehler |
2019-01-30 | Correct handling of TLS sigalgs extension for TLSv1.0/TLSv1.1. | Joel Sing |
2019-01-28 | Deduplicate a bunch of replicated code in the extension handling | Bob Beck |
2019-01-28 | Add tls_extension_seen(), a utility to know if a particular extension | Bob Beck |
2019-01-24 | Set pointer variables in tls13 handshake to NULL on clear | Bob Beck |
2019-01-24 | Add server side of versions, keyshare, and client and server of cookie | Bob Beck |
2019-01-24 | move the extensions_seen into the handshake struct | Bob Beck |
2019-01-24 | Remove SHA224 based sigalgs from use in TLS 1.2 as SHA224 is deprecated. | Bob Beck |
2019-01-23 | Correct ECDSA_SECP512R1 typo to ECDSA_SECP521R1 | Bob Beck |
2019-01-23 | Rename NUM_HANDSHAKE to handshake_count and make it a variable | Theo Buehler |