Fork of the Go standard TLS library, providing low-level access to the ClientHello for mimicry purposes.
Find a file
Filippo Valsorda daa7ff8195 crypto/tls: fix client certificates support for legacy servers
signatureSchemesForCertificate was written to be used with TLS 1.3, but
ended up used for TLS 1.2 client certificates in a refactor. Since it
only supported TLS 1.3 signature algorithms, it would lead to no RSA
client certificates being sent to servers that didn't support RSA-PSS.

TestHandshakeClientCertRSAPKCS1v15 was testing *specifically* for this,
but alas the OpenSSL flag -verify accepts an empty certificates list as
valid, as opposed to -Verify...

Fixes #28925

Change-Id: I61afc02ca501d3d64ab4ad77bbb4cf10931e6f93
Reviewed-on: https://go-review.googlesource.com/c/151660
Run-TryBot: Filippo Valsorda <filippo@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Adam Langley <agl@golang.org>
2018-11-30 19:10:38 +00:00
testdata crypto/tls: fix client certificates support for legacy servers 2018-11-30 19:10:38 +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: fix client certificates support for legacy servers 2018-11-30 19:10:38 +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 vendor/golang_org/x: move to internal/x 2018-11-29 15:42:16 +00:00
common.go crypto/tls: fix client certificates support for legacy servers 2018-11-30 19:10:38 +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: fix client certificates support for legacy servers 2018-11-30 19:10:38 +00:00
handshake_client_test.go crypto/tls: fix client certificates support for legacy servers 2018-11-30 19:10:38 +00:00
handshake_client_tls13.go crypto/tls: fix client certificates support for legacy servers 2018-11-30 19:10:38 +00:00
handshake_messages.go vendor/golang_org/x: move to internal/x 2018-11-29 15:42:16 +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: fix client certificates support for legacy servers 2018-11-30 19:10:38 +00:00
handshake_server_tls13.go crypto/tls: fix client certificates support for legacy servers 2018-11-30 19:10:38 +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 vendor/golang_org/x: move to internal/x 2018-11-29 15:42:16 +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 vendor/golang_org/x: move to internal/x 2018-11-29 15:42:16 +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