Home
last modified time | relevance | path

Searched refs:remoteCert (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DInternalChannelz.java658 @Nullable public final Certificate remoteCert; field in InternalChannelz.Tls
663 public Tls(String cipherSuiteName, Certificate localCert, Certificate remoteCert) { in Tls() argument
666 this.remoteCert = remoteCert; in Tls()
675 Certificate remoteCert = null; in Tls() local
685 remoteCert = peerCerts[0]; in Tls()
696 this.remoteCert = remoteCert; in Tls()
/external/libcups/cups/
Dhttp-private.h180 remoteCert; /* Remote (peer's) certificate */
Dtls-sspi.c143 if (!http || !http->tls || !http->tls->remoteCert || !credentials) in httpCopyCredentials()
152 …httpAddCredential(*credentials, http->tls->remoteCert->pbCertEncoded, http->tls->remoteCert->cbCer… in httpCopyCredentials()
1628 …eryContextAttributes(&sspi->context, SECPKG_ATTR_REMOTE_CERT_CONTEXT, (VOID *)&(sspi->remoteCert)); in http_sspi_client()
1863 if (sspi->remoteCert) in http_sspi_free()
1864 CertFreeCertificateContext(sspi->remoteCert); in http_sspi_free()
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java158 if (security.tls.remoteCert != null) { in toSecurity()
160 security.tls.remoteCert.getEncoded())); in toSecurity()
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DInternalChannelzTest.java292 assertEquals(remote, tls.remoteCert); in tlsSecurityInfo()