Merge branch golang crypto/tls upstream

This commit is contained in:
Sergey Frolov 2019-08-22 17:42:47 -06:00
commit ceee37ab69
29 changed files with 1664 additions and 1941 deletions

View file

@ -87,7 +87,6 @@ func (c *Conn) makeClientHello() (*clientHelloMsg, ecdheParameters, error) {
possibleCipherSuites := config.cipherSuites()
hello.cipherSuites = make([]uint16, 0, len(possibleCipherSuites))
NextCipherSuite:
for _, suiteId := range possibleCipherSuites {
for _, suite := range cipherSuites {
if suite.id != suiteId {
@ -96,10 +95,10 @@ NextCipherSuite:
// Don't advertise TLS 1.2-only cipher suites unless
// we're attempting TLS 1.2.
if hello.vers < VersionTLS12 && suite.flags&suiteTLS12 != 0 {
continue
break
}
hello.cipherSuites = append(hello.cipherSuites, suiteId)
continue NextCipherSuite
break
}
}
@ -833,11 +832,7 @@ func (c *Conn) verifyServerCertificate(certificates [][]byte) error {
DNSName: c.config.ServerName,
Intermediates: x509.NewCertPool(),
}
for i, cert := range certs {
if i == 0 {
continue
}
for _, cert := range certs[1:] {
opts.Intermediates.AddCert(cert)
}
var err error
@ -940,7 +935,7 @@ func (c *Conn) getClientCertificate(cri *CertificateRequestInfo) (*Certificate,
// Issuer is in AcceptableCAs.
for i, chain := range c.config.Certificates {
sigOK := false
for _, alg := range signatureSchemesForCertificate(&chain) {
for _, alg := range signatureSchemesForCertificate(c.vers, &chain) {
if isSupportedSignatureAlgorithm(alg, cri.SignatureSchemes) {
sigOK = true
break