crypto/tls.Certificate.OCSPStaple (field)

14 uses

	crypto/tls (current package)
		common.go#L1315: 	OCSPStaple []byte
		handshake_client_tls13.go#L459: 	c.ocspResponse = certMsg.certificate.OCSPStaple
		handshake_client_tls13.go#L567: 	certMsg.ocspStapling = hs.certReq.ocspStapling && len(cert.OCSPStaple) > 0
		handshake_messages.go#L1299: 			certificate.OCSPStaple = nil
		handshake_messages.go#L1322: 				if certificate.OCSPStaple != nil {
		handshake_messages.go#L1327: 							b.AddBytes(certificate.OCSPStaple)
		handshake_messages.go#L1361: 	m.ocspStapling = m.certificate.OCSPStaple != nil
		handshake_messages.go#L1395: 					!readUint24LengthPrefixed(&extData, &certificate.OCSPStaple) ||
		handshake_messages.go#L1396: 					len(certificate.OCSPStaple) == 0 {
		handshake_server.go#L460: 	if hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0 {
		handshake_server.go#L488: 		certStatus.response = hs.cert.OCSPStaple
		handshake_server.go#L809: 	c.ocspResponse = certificate.OCSPStaple
		handshake_server_tls13.go#L615: 	certMsg.ocspStapling = hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0
		handshake_server_tls13.go#L747: 			OCSPStaple:                  c.ocspResponse,