github.com/refraction-networking/utls.Certificate.Certificate (field)

22 uses

	github.com/refraction-networking/utls (current package)
		common.go#L1529: 	for j, cert := range c.Certificate {
		common.go#L1603: 	Certificate [][]byte
		common.go#L1630: 	return x509.ParseCertificate(c.Certificate[0])
		handshake_client.go#L793: 		certMsg.certificates = chainToSend.Certificate
		handshake_client.go#L823: 	if chainToSend != nil && len(chainToSend.Certificate) > 0 {
		handshake_client_tls13.go#L819: 	if len(certMsg.certificate.Certificate) == 0 {
		handshake_client_tls13.go#L834: 	if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
		handshake_client_tls13.go#L963: 	if len(cert.Certificate) == 0 {
		handshake_messages.go#L1527: 		for i, cert := range certificate.Certificate {
		handshake_messages.go#L1592: 		certificate.Certificate = append(certificate.Certificate, cert)
		handshake_messages.go#L1600: 			if len(certificate.Certificate) > 1 {
		handshake_server.go#L606: 	certMsg.certificates = hs.cert.Certificate
		handshake_server.go#L686: 			Certificate: certMsg.certificates,
		handshake_server.go#L909: 	certificates := certificate.Certificate
		handshake_server_tls13.go#L1076: 	if len(certMsg.certificate.Certificate) != 0 {
		ticket.go#L139: 		Certificate:                 certificatesToBytesSlice(s.peerCertificates),
		ticket.go#L224: 	for _, cert := range cert.Certificate {
		tls.go#L266: 			cert.Certificate = append(cert.Certificate, certDERBlock.Bytes)
		tls.go#L272: 	if len(cert.Certificate) == 0 {
		tls.go#L303: 	x509Cert, err := x509.ParseCertificate(cert.Certificate[0])