1
0

Update client SCT list during TLS 1.3 handshake, fixes #76

Este cometimento está contido em:
Evan Klitzke 2018-06-23 18:58:58 -07:00 cometido por Henry Dorsett Case
ascendente b1d6c0aeaa
cometimento 67bc308e04
2 ficheiros modificados com 1 adições e 2 eliminações

1
13.go
Ver ficheiro

@ -953,6 +953,7 @@ func (hs *clientHandshakeState) doTLS13Handshake() error {
hash := hashForSuite(hs.suite)
hashSize := hash.Size()
serverHello := hs.serverHello
c.scts = serverHello.scts
// middlebox compatibility mode, send CCS before second flight.
if _, err := c.writeRecord(recordTypeChangeCipherSpec, []byte{1}); err != nil {

Ver ficheiro

@ -394,8 +394,6 @@ func TestSCTHandshake(t *testing.T) {
PrivateKey: testRSAPrivateKey,
SignedCertificateTimestamps: expected,
}},
// See GH#76
MaxVersion: VersionTLS12,
}
clientConfig := &Config{
InsecureSkipVerify: true,