mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
[dev.boringcrypto] all: merge master into dev.boringcrypto
Change-Id: Ic5f71c04f08c03319c043f35be501875adb0a3b0
This commit is contained in:
commit
707ce18f5e
4 changed files with 34 additions and 15 deletions
|
@ -18,7 +18,6 @@ import (
|
|||
"crypto/x509"
|
||||
"errors"
|
||||
"fmt"
|
||||
"internal/godebug"
|
||||
"io"
|
||||
"net"
|
||||
"strings"
|
||||
|
@ -977,9 +976,6 @@ var supportedVersions = []uint16{
|
|||
VersionTLS10,
|
||||
}
|
||||
|
||||
// debugEnableTLS10 enables TLS 1.0. See issue 45428.
|
||||
var debugEnableTLS10 = godebug.Get("tls10default") == "1"
|
||||
|
||||
// roleClient and roleServer are meant to call supportedVersions and parents
|
||||
// with more readability at the callsite.
|
||||
const roleClient = true
|
||||
|
@ -991,7 +987,7 @@ func (c *Config) supportedVersions(isClient bool) []uint16 {
|
|||
if needFIPS() && (v < fipsMinVersion(c) || v > fipsMaxVersion(c)) {
|
||||
continue
|
||||
}
|
||||
if (c == nil || c.MinVersion == 0) && !debugEnableTLS10 &&
|
||||
if (c == nil || c.MinVersion == 0) &&
|
||||
isClient && v < VersionTLS12 {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue