Fork of the Go standard TLS library, providing low-level access to the ClientHello for mimicry purposes.
Find a file
Filippo Valsorda e04a8ac694 crypto/tls: implement TLS 1.3 KeyUpdate messages
Since TLS 1.3 delivers handshake messages (including KeyUpdate) after
the handshake, the want argument to readRecord had became almost
pointless: it only meant something when set to recordTypeChangeCipherSpec.
Replaced it with a bool to reflect that, and added two shorthands to
avoid anonymous bools in calls.

Took the occasion to simplify and formalize the invariants of readRecord.

The maxConsecutiveEmptyRecords loop became useless when readRecord
started retrying on any non-advancing record in CL 145297.

Replaced panics with errors, because failure is better than undefined
behavior, but contained failure is better than a DoS vulnerability. For
example, I suspect the panic at the top of readRecord was reachable from
handleRenegotiation, which calls readHandshake with handshakeComplete
false. Thankfully it was not a panic in 1.11, and it's allowed now.

Removed Client-TLSv13-RenegotiationRejected because OpenSSL isn't
actually willing to ask for renegotiation over TLS 1.3, the expected
error was due to NewSessionTicket messages, which didn't break the rest
of the tests because they stop too soon.

Updates #9671

Change-Id: I297a81bde5c8020a962a92891b70d6d70b90f5e3
Reviewed-on: https://go-review.googlesource.com/c/147418
Run-TryBot: Filippo Valsorda <filippo@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Adam Langley <agl@golang.org>
2018-11-12 20:42:36 +00:00
testdata crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
alert.go crypto/tls: implement TLS 1.3 client handshake (base) 2018-11-02 22:07:02 +00:00
auth.go crypto/tls: implement TLS 1.3 server handshake (base) 2018-11-02 22:07:43 +00:00
auth_test.go crypto/tls: add RSASSA-PSS support for handshake messages 2018-06-27 23:08:06 +00:00
cipher_suites.go crypto/tls: implement TLS 1.3 client handshake (base) 2018-11-02 22:07:02 +00:00
common.go crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
conn.go crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
conn_test.go crypto/tls: replace net.Pipe in tests with real TCP connections 2018-10-19 12:43:30 +00:00
example_test.go crypto/tls: add examples for [Load]X509KeyPair 2018-04-30 17:25:27 +00:00
generate_cert.go crypto/tls: handle errors in generate_cert.go 2018-02-13 18:14:27 +00:00
handshake_client.go crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
handshake_client_test.go crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
handshake_client_tls13.go crypto/tls: implement TLS 1.3 KeyLogWriter support 2018-11-12 20:42:20 +00:00
handshake_messages.go crypto/tls: implement TLS 1.3 server handshake (base) 2018-11-02 22:07:43 +00:00
handshake_messages_test.go crypto/tls: implement TLS 1.3 version-specific messages 2018-11-02 22:04:51 +00:00
handshake_server.go crypto/tls: implement TLS 1.3 KeyUpdate messages 2018-11-12 20:42:36 +00:00
handshake_server_test.go crypto/tls: implement TLS 1.3 KeyLogWriter support 2018-11-12 20:42:20 +00:00
handshake_server_tls13.go crypto/tls: implement TLS 1.3 KeyLogWriter support 2018-11-12 20:42:20 +00:00
handshake_test.go crypto/tls: advertise and accept rsa_pss_rsae signature algorithms 2018-11-02 22:05:52 +00:00
key_agreement.go crypto/tls: implement TLS 1.3 client handshake (base) 2018-11-02 22:07:02 +00:00
key_schedule.go crypto/tls: implement TLS 1.3 client handshake (base) 2018-11-02 22:07:02 +00:00
key_schedule_test.go crypto/tls: implement TLS 1.3 cryptographic computations 2018-11-02 21:54:52 +00:00
prf.go crypto/tls: implement TLS 1.3 client handshake (base) 2018-11-02 22:07:02 +00:00
prf_test.go crypto/tls: make ConnectionState.ExportKeyingMaterial a method 2018-08-22 03:48:56 +00:00
ticket.go crypto/tls: replace custom equal implementations with reflect.DeepEqual 2018-10-25 19:07:36 +00:00
tls.go crypto/tls: remove unneeded calls to bytes.NewReader 2018-10-30 01:43:09 +00:00
tls_test.go crypto/tls: implement TLS 1.3 record layer and cipher suites 2018-11-02 21:54:38 +00:00