Fork of the Go standard TLS library, providing low-level access to the ClientHello for mimicry purposes.
Find a file
Bryan C. Mills 30581d3628 all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor'
This also updates the vendored-in versions of several packages: 'go
mod vendor' selects a consistent version of each module, but we had
previously vendored an ad-hoc selection of packages.

Notably, x/crypto/hkdf was previously vendored in at a much newer
commit than the rest of x/crypto. Bringing the rest of x/crypto up to
that commit introduced an import of golang.org/x/sys/cpu, which broke
the js/wasm build, requiring an upgrade of x/sys to pick up CL 165749.

Updates #30228
Updates #30241
Updates #25822

Change-Id: I5b3dbc232b7e6a048a158cbd8d36137af1efb711
Reviewed-on: https://go-review.googlesource.com/c/go/+/164623
Reviewed-by: Filippo Valsorda <filippo@golang.org>
2019-03-11 20:28:54 +00:00
testdata Revert "crypto/tls: disable RSA-PSS in TLS 1.2" 2019-02-27 07:54:00 +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 message for unsupported certificates in TLS 1.3 2018-11-30 19:11:39 +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 all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor' 2019-03-11 20:28:54 +00:00
common.go crypto/tls: enable TLS 1.3 by default 2019-02-27 07:54:19 +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: disable RSA-PSS in TLS 1.2 2019-02-07 18:34:43 +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: remove superfluous for label 2019-02-26 18:38:04 +00:00
handshake_client_test.go Revert "crypto/tls: disable RSA-PSS in TLS 1.2" 2019-02-27 07:54:00 +00:00
handshake_client_tls13.go crypto/tls: improve error message for unsupported certificates in TLS 1.3 2018-11-30 19:11:39 +00:00
handshake_messages.go all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor' 2019-03-11 20:28:54 +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 Revert "crypto/tls: disable RSA-PSS in TLS 1.2" 2019-02-27 07:54:00 +00:00
handshake_server_test.go Revert "crypto/tls: disable RSA-PSS in TLS 1.2" 2019-02-27 07:54:00 +00:00
handshake_server_tls13.go crypto/tls: send a "handshake failure" alert if the RSA key is too small 2019-01-20 20:01:48 +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 Revert "crypto/tls: disable RSA-PSS in TLS 1.2" 2019-02-27 07:54:00 +00:00
key_schedule.go all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor' 2019-03-11 20:28:54 +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 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: enable TLS 1.3 by default 2019-02-27 07:54:19 +00:00
tls_test.go crypto/tls: enable TLS 1.3 by default 2019-02-27 07:54:19 +00:00