Implement TLS 1.3 Randomized Spec and revise 1.2

Fixes #13
This commit is contained in:
Sergey Frolov 2019-01-02 23:33:01 -07:00 committed by sergeyfrolov
parent b84d7d5f05
commit fd72b83e04
2 changed files with 97 additions and 28 deletions

View file

@ -489,17 +489,17 @@ func (uconn *UConn) SetTLSVers(minTLSVers, maxTLSVers uint16) error {
return fmt.Errorf("uTLS does not support 0x%X as max version", maxTLSVers)
}
makeSupportedVersions := func(maxVers, minVers uint16) []uint16 {
// max goes first
a := make([]uint16, maxVers-minVers+1)
for i := range a {
a[i] = maxVers - uint16(i)
}
return a
}
uconn.HandshakeState.Hello.SupportedVersions = makeSupportedVersions(maxTLSVers, minTLSVers)
uconn.HandshakeState.Hello.SupportedVersions = makeSupportedVersions(minTLSVers, maxTLSVers)
uconn.config.MinVersion = minTLSVers
uconn.config.MaxVersion = maxTLSVers
return nil
}
func makeSupportedVersions(minVers, maxVers uint16) []uint16 {
a := make([]uint16, maxVers-minVers+1)
for i := range a {
a[i] = maxVers - uint16(i)
}
return a
}