The root cause of races is that global variables supportedSignatureAlgorithms and
cipherSuites are used both to form handshake and to check whether or not
peer responded with supported algorithm.
In this patch I create separate variables for this purpose.
Updated tests for kicks.
Finally, go fmt.
This commit is contained in:
Sergey Frolov 2017-08-16 16:10:12 -04:00
parent 09f732cdd6
commit fd96e317e6
31 changed files with 961 additions and 1032 deletions

View file

@ -67,7 +67,7 @@ type ServerHelloMsg struct {
NextProtos []string
OcspStapling bool
Scts [][]byte
Ems bool
Ems bool
TicketSupported bool
SecureRenegotiation []byte
SecureRenegotiationSupported bool
@ -89,7 +89,7 @@ func (shm *ServerHelloMsg) getPrivatePtr() *serverHelloMsg {
nextProtos: shm.NextProtos,
ocspStapling: shm.OcspStapling,
scts: shm.Scts,
ems: shm.Ems,
ems: shm.Ems,
ticketSupported: shm.TicketSupported,
secureRenegotiation: shm.SecureRenegotiation,
secureRenegotiationSupported: shm.SecureRenegotiationSupported,
@ -113,7 +113,7 @@ func (shm *serverHelloMsg) getPublicPtr() *ServerHelloMsg {
NextProtos: shm.nextProtos,
OcspStapling: shm.ocspStapling,
Scts: shm.scts,
Ems: shm.ems,
Ems: shm.ems,
TicketSupported: shm.ticketSupported,
SecureRenegotiation: shm.secureRenegotiation,
SecureRenegotiationSupported: shm.secureRenegotiationSupported,
@ -133,7 +133,7 @@ type ClientHelloMsg struct {
ServerName string
OcspStapling bool
Scts bool
Ems bool
Ems bool
SupportedCurves []CurveID
SupportedPoints []uint8
TicketSupported bool
@ -159,7 +159,7 @@ func (chm *ClientHelloMsg) getPrivatePtr() *clientHelloMsg {
serverName: chm.ServerName,
ocspStapling: chm.OcspStapling,
scts: chm.Scts,
ems: chm.Ems,
ems: chm.Ems,
supportedCurves: chm.SupportedCurves,
supportedPoints: chm.SupportedPoints,
ticketSupported: chm.TicketSupported,
@ -187,7 +187,7 @@ func (chm *clientHelloMsg) getPublicPtr() *ClientHelloMsg {
ServerName: chm.serverName,
OcspStapling: chm.ocspStapling,
Scts: chm.scts,
Ems: chm.ems,
Ems: chm.ems,
SupportedCurves: chm.supportedCurves,
SupportedPoints: chm.supportedPoints,
TicketSupported: chm.ticketSupported,