crypto/tls.Certificate.OCSPStaple (field)

14 uses

	crypto/tls (current package)
		common.go#L1362: 	OCSPStaple []byte
		handshake_client_tls13.go#L455: 	c.ocspResponse = certMsg.certificate.OCSPStaple
		handshake_client_tls13.go#L564: 	certMsg.ocspStapling = hs.certReq.ocspStapling && len(cert.OCSPStaple) > 0
		handshake_messages.go#L1298: 			certificate.OCSPStaple = nil
		handshake_messages.go#L1321: 				if certificate.OCSPStaple != nil {
		handshake_messages.go#L1326: 							b.AddBytes(certificate.OCSPStaple)
		handshake_messages.go#L1360: 	m.ocspStapling = m.certificate.OCSPStaple != nil
		handshake_messages.go#L1394: 					!readUint24LengthPrefixed(&extData, &certificate.OCSPStaple) ||
		handshake_messages.go#L1395: 					len(certificate.OCSPStaple) == 0 {
		handshake_server.go#L486: 	if hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0 {
		handshake_server.go#L514: 		certStatus.response = hs.cert.OCSPStaple
		handshake_server.go#L835: 	c.ocspResponse = certificate.OCSPStaple
		handshake_server_tls13.go#L601: 	certMsg.ocspStapling = hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0
		handshake_server_tls13.go#L733: 			OCSPStaple:                  c.ocspResponse,