crypto/tls.Certificate.Certificate (field)
22 uses
crypto/tls (current package)
common.go#L1329: for j, cert := range c.Certificate {
common.go#L1403: Certificate [][]byte
common.go#L1430: return x509.ParseCertificate(c.Certificate[0])
handshake_client.go#L637: certMsg.certificates = chainToSend.Certificate
handshake_client.go#L667: if chainToSend != nil && len(chainToSend.Certificate) > 0 {
handshake_client_tls13.go#L523: if len(certMsg.certificate.Certificate) == 0 {
handshake_client_tls13.go#L531: if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
handshake_client_tls13.go#L655: if len(cert.Certificate) == 0 {
handshake_messages.go#L1389: for i, cert := range certificate.Certificate {
handshake_messages.go#L1454: certificate.Certificate = append(certificate.Certificate, cert)
handshake_messages.go#L1462: if len(certificate.Certificate) > 1 {
handshake_server.go#L560: certMsg.certificates = hs.cert.Certificate
handshake_server.go#L637: Certificate: certMsg.certificates,
handshake_server.go#L859: certificates := certificate.Certificate
handshake_server_tls13.go#L919: if len(certMsg.certificate.Certificate) != 0 {
ticket.go#L138: Certificate: certificatesToBytesSlice(s.peerCertificates),
ticket.go#L223: for _, cert := range cert.Certificate {
tls.go#L257: cert.Certificate = append(cert.Certificate, certDERBlock.Bytes)
tls.go#L263: if len(cert.Certificate) == 0 {
tls.go#L294: x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |