diff --git a/handshake_client.go b/handshake_client.go index 91cf41b..5c7420a 100644 --- a/handshake_client.go +++ b/handshake_client.go @@ -214,9 +214,9 @@ func (c *Conn) makeClientHello() (*clientHelloMsg, *keySharePrivateKeys, *echCli var ech *echClientContext if c.config.EncryptedClientHelloConfigList != nil { - if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 { - return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") - } + // if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 { + // return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") + // } if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 { return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") } diff --git a/u_handshake_client.go b/u_handshake_client.go index 8674caa..cc93aa7 100644 --- a/u_handshake_client.go +++ b/u_handshake_client.go @@ -353,9 +353,9 @@ func (c *Conn) makeClientHelloForApplyPreset() (*clientHelloMsg, *keySharePrivat var ech *echClientContext if c.config.EncryptedClientHelloConfigList != nil { - if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 { - return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") - } + // if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 { + // return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") + // } if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 { return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated") }