google.golang.org/grpc/credentials.TLSInfo.State (field)

9 uses

	google.golang.org/grpc/credentials (current package)
		tls.go#L42: 	State tls.ConnectionState
		tls.go#L63: 	if len(t.State.PeerCertificates) == 0 {
		tls.go#L68: 	return t.State.PeerCertificates[0].VerifyHostname(host)
		tls.go#L89: 		StandardName: cipherSuiteLookup(t.State.CipherSuite),
		tls.go#L92: 	if len(t.State.PeerCertificates) > 0 {
		tls.go#L93: 		v.RemoteCertificate = t.State.PeerCertificates[0].Raw
		tls.go#L156: 		State: conn.ConnectionState(),
		tls.go#L187: 		State: cs,

	google.golang.org/grpc/internal/transport
		handler_server.go#L85: 		authInfo = credentials.TLSInfo{State: *r.TLS, CommonAuthInfo: credentials.CommonAuthInfo{SecurityLevel: credentials.PrivacyAndIntegrity}}