crypto/tls.Certificate.SignedCertificateTimestamps (field)

13 uses

	crypto/tls (current package)
		common.go#L1318: 	SignedCertificateTimestamps [][]byte
		handshake_client_tls13.go#L458: 	c.scts = certMsg.certificate.SignedCertificateTimestamps
		handshake_client_tls13.go#L566: 	certMsg.scts = hs.certReq.scts && len(cert.SignedCertificateTimestamps) > 0
		handshake_messages.go#L1302: 			certificate.SignedCertificateTimestamps = nil
		handshake_messages.go#L1331: 				if certificate.SignedCertificateTimestamps != nil {
		handshake_messages.go#L1335: 							for _, sct := range certificate.SignedCertificateTimestamps {
		handshake_messages.go#L1360: 	m.scts = m.certificate.SignedCertificateTimestamps != nil
		handshake_messages.go#L1410: 					certificate.SignedCertificateTimestamps = append(
		handshake_messages.go#L1411: 						certificate.SignedCertificateTimestamps, sct)
		handshake_server.go#L233: 		hs.hello.scts = hs.cert.SignedCertificateTimestamps
		handshake_server.go#L810: 	c.scts = certificate.SignedCertificateTimestamps
		handshake_server_tls13.go#L614: 	certMsg.scts = hs.clientHello.scts && len(hs.cert.SignedCertificateTimestamps) > 0
		handshake_server_tls13.go#L748: 			SignedCertificateTimestamps: c.scts,