Fork of the Go standard TLS library, providing low-level access to the ClientHello for mimicry purposes.
Find a file
Filippo Valsorda b4c934319a crypto/tls: prevent the test server from sending session tickets
Since they are sent after the handshake in TLS 1.3, the client was not
actually consuming them, as it doesn't make any Read calls. They were
then sitting in the kernel receive buffer when the client would call
Close. The kernel would see that and send a RST, which would race the
closeNotify, causing errors.

Also, we get to trim 600 lines of useless test data.

Fixes #28852

Change-Id: I7517feab77dabab7504bfc111098ba09ea07ae5e
Reviewed-on: https://go-review.googlesource.com/c/151659
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2018-11-29 05:55:51 +00:00
testdata crypto/tls: prevent the test server from sending session tickets 2018-11-29 05:55:51 +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 PSK authentication (client side) 2018-11-12 20:43:23 +00:00
common.go crypto/tls: don't modify Config.Certificates in BuildNameToCertificate 2018-11-12 23:25:21 +00:00
conn.go crypto/tls: set ServerName and unset TLSUnique in ConnectionState in TLS 1.3 2018-11-12 20:44:22 +00:00
conn_test.go crypto/tls: enable TLS 1.3 and update tests 2018-11-12 20:44:39 +00:00
example_test.go crypto/tls: enable TLS 1.3 and update tests 2018-11-12 20:44:39 +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 client authentication 2018-11-12 20:43:55 +00:00
handshake_client_test.go crypto/tls: prevent the test server from sending session tickets 2018-11-29 05:55:51 +00:00
handshake_client_tls13.go crypto/tls: implement TLS 1.3 client authentication 2018-11-12 20:43:55 +00:00
handshake_messages.go crypto/tls: implement TLS 1.3 client authentication 2018-11-12 20:43:55 +00:00
handshake_messages_test.go crypto/tls: implement TLS 1.3 client authentication 2018-11-12 20:43:55 +00:00
handshake_server.go crypto/tls: implement TLS 1.3 downgrade protection 2018-11-12 20:44:07 +00:00
handshake_server_test.go crypto/tls: enable TLS 1.3 and update tests 2018-11-12 20:44:39 +00:00
handshake_server_tls13.go crypto/tls: enable TLS 1.3 and update tests 2018-11-12 20:44:39 +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 PSK authentication (client side) 2018-11-12 20:43:23 +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: implement TLS 1.3 PSK authentication (client side) 2018-11-12 20:43:23 +00:00
ticket.go crypto/tls: implement TLS 1.3 PSK authentication (server side) 2018-11-12 20:43:35 +00:00
tls.go crypto/tls: enable TLS 1.3 and update tests 2018-11-12 20:44:39 +00:00
tls_test.go crypto/tls: don't modify Config.Certificates in BuildNameToCertificate 2018-11-12 23:25:21 +00:00