Fork of the Go standard TLS library, providing low-level access to the ClientHello for mimicry purposes.
Find a file
Filippo Valsorda edbdd2848e crypto/tls: add ExampleConfig_VerifyPeerCertificate
Setting InsecureSkipVerify and VerifyPeerCertificate is the recommended
way to customize and override certificate validation.

However, there is boilerplate involved and it usually requires first
reimplementing the default validation strategy to then customize it.
Provide an example that does the same thing as the default as a starting
point.

Examples of where we directed users to do something similar are in
issues #35467, #31791, #28754, #21971, and #24151.

Fixes #31792

Change-Id: Id033e9fa3cac9dff1f7be05c72dfb34b4f973fd4
Reviewed-on: https://go-review.googlesource.com/c/go/+/193620
Reviewed-by: Adam Langley <agl@golang.org>
2019-11-09 20:08:06 +00:00
testdata crypto/tls: send ec_points_format extension in ServerHello 2019-10-31 15:14:45 +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: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
auth_test.go crypto/tls: remove SSLv3 support 2019-08-27 22:24:05 +00:00
cipher_suites.go crypto/tls: remove SSLv3 support 2019-08-27 22:24:05 +00:00
common.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
conn.go crypto/tls: move a defer out of a loop 2019-10-26 15:17:28 +00:00
conn_test.go crypto/tls: disable RSA-PSS in TLS 1.2 2019-02-07 18:34:43 +00:00
example_test.go crypto/tls: add ExampleConfig_VerifyPeerCertificate 2019-11-09 20:08:06 +00:00
generate_cert.go crypto/tls: consistently use %v for error formatting 2019-10-11 14:23:52 +00:00
handshake_client.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
handshake_client_test.go crypto/tls: make -update only regenerate transcripts for failing tests 2019-11-04 20:39:53 +00:00
handshake_client_tls13.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
handshake_messages.go crypto/tls: send ec_points_format extension in ServerHello 2019-10-31 15:14:45 +00:00
handshake_messages_test.go crypto/tls: send ec_points_format extension in ServerHello 2019-10-31 15:14:45 +00:00
handshake_server.go crypto/tls: send ec_points_format extension in ServerHello 2019-10-31 15:14:45 +00:00
handshake_server_test.go crypto/tls: make -update only regenerate transcripts for failing tests 2019-11-04 20:39:53 +00:00
handshake_server_tls13.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
handshake_test.go crypto/tls: make -update only regenerate transcripts for failing tests 2019-11-04 20:39:53 +00:00
handshake_unix_test.go crypto/tls: retry net.Dial flakes on Dragonfly 2019-10-21 19:06:29 +00:00
key_agreement.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
key_schedule.go crypto/tls: reject low-order Curve25519 points 2019-06-20 19:30:01 +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: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00
prf_test.go crypto/tls: remove SSLv3 support 2019-08-27 22:24:05 +00:00
ticket.go all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor' 2019-03-11 20:28:54 +00:00
tls.go crypto/tls: remove TLS 1.3 opt-out 2019-08-27 22:25:08 +00:00
tls_test.go crypto/tls: improve error messages for invalid certificates and signatures 2019-10-30 20:18:59 +00:00