summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_client.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Add client certificate support for tls 1.3beck2020-01-261-2/+148
* Move pad and verify context into tls13_lib.cbeck2020-01-261-20/+5
* Only perform the downgrade check if our max version is less than TLSv1.3.jsing2020-01-251-15/+17
* It is possible to receive a pre-TLSv1.3 alert in response to a TLSv1.3jsing2020-01-251-1/+7
* When certificate validation fails, we must send a DECRYPT_ERROR alertbeck2020-01-231-3/+6
* Add checking int the client to check the magic values which arebeck2020-01-231-1/+17
* Save the legacy session id in the client, and enforce that it is returnedbeck2020-01-231-6/+13
* Pass a CBB to TLSv1.3 send handlers.jsing2020-01-231-16/+5
* Pass a handshake message content CBS to TLSv1.3 receive handlers.jsing2020-01-221-55/+26
* Send alerts on certificate verification failures of server certsbeck2020-01-221-2/+2
* After the ClientHello has been sent or received and before the peer'stb2020-01-221-1/+4
* Correctly set the legacy version when TLSv1.3 is building a client hello.jsing2020-01-221-4/+11
* The legacy_record_version must be set to TLS1_2_VERSION excepttb2020-01-221-1/+12
* Add minimal support for hello retry request for RFC conformance.beck2020-01-221-1/+64
* Correct legacy fallback for TLSv1.3 client.jsing2020-01-211-7/+21
* Add alert processing in tls client code, by adding alert to thebeck2020-01-211-16/+21
* Provide an error framework for use with the TLSv1.3 code.jsing2020-01-201-1/+3
* tls13_connect() should be static.jsing2019-11-171-2/+2
* Fix backoff to legacy when in client auth mode.beck2019-11-171-2/+2
* Drop back to the legacy tls method if we are doing client authenticaitonbeck2019-11-171-1/+7
* By design, our state machine is a DAG contrary to the state machine intb2019-04-051-4/+1
* Implement legacy fallback for the TLS 1.3 client.jsing2019-04-041-6/+81
* Defer sigalgs selection until the certificate is known.jsing2019-03-251-2/+2
* Set the SSL state as part of tls13_legacy_connect().jsing2019-02-281-2/+5
* Add a handshake action sent handler and use it for client finished.jsing2019-02-251-9/+14
* Correct a few error returns.jsing2019-02-251-4/+4
* Switch to application traffic keys as appropriate.jsing2019-02-141-1/+17
* Split tls13_record_layer_set_traffic_keys() into two separate functions.jsing2019-02-141-3/+5
* Clean up some pesky trailing whitespace.jsing2019-02-131-10/+10
* Handle finished messages in TLSv1.3 client.jsing2019-02-131-1/+130
* Implement handling of Certificate and CertificateVerify messages.jsing2019-02-111-1/+213
* Rename tls1_handshake_hash*() to tls1_transcript_hash*().jsing2019-02-091-3/+3
* Provide a reference from the TLSv1.3 context to the handshake state.jsing2019-02-091-18/+21
* Implement processing of EncryptedExtensions in the TLS 1.3 client.jsing2019-02-071-1/+27
* Implement parsing and processing of TLSv1.3 ServerHello messages.jsing2019-02-041-1/+178
* Provide the initial TLSv1.3 client implementation.jsing2019-01-211-0/+139