Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/security/cert/
DTrustAnchor.java68 private final X509Certificate trustedCert; field in TrustAnchor
123 public TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) in TrustAnchor() argument
125 if (trustedCert == null) in TrustAnchor()
128 this.trustedCert = trustedCert; in TrustAnchor()
167 this.trustedCert = null; in TrustAnchor()
220 this.trustedCert = null; in TrustAnchor()
231 return this.trustedCert; in getTrustedCert()
327 sb.append(" Trusted CA cert: " + trustedCert.toString() + "\n"); in toString()
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DPKIXCertPathValidator.java115 X509Certificate trustedCert = anchor.getTrustedCert(); in validate() local
116 if (trustedCert != null) { in validate()
119 if (selector != null && !selector.match(trustedCert)) { in validate()
130 + trustedCert.getSubjectX500Principal()); in validate()
DForwardBuilder.java88 X509Certificate trustedCert = anchor.getTrustedCert(); in ForwardBuilder() local
89 if (trustedCert != null) { in ForwardBuilder()
90 trustedCerts.add(trustedCert); in ForwardBuilder()
91 trustedSubjectDNs.add(trustedCert.getSubjectX500Principal()); in ForwardBuilder()
285 for (X509Certificate trustedCert : trustedCerts) { in getMatchingCACerts()
286 if (sel.match(trustedCert)) { in getMatchingCACerts()
291 Debug.toHexString(trustedCert.getSerialNumber()) + in getMatchingCACerts()
293 trustedCert.getSubjectX500Principal() + in getMatchingCACerts()
295 trustedCert.getIssuerX500Principal()); in getMatchingCACerts()
297 if (caCerts.add(trustedCert) && !searchAllCertStores) { in getMatchingCACerts()
/libcore/ojluni/src/main/java/java/security/
DKeyStore.java769 public TrustedCertificateEntry(Certificate trustedCert) { in TrustedCertificateEntry() argument
770 if (trustedCert == null) { in TrustedCertificateEntry()
773 this.cert = trustedCert; in TrustedCertificateEntry()
792 public TrustedCertificateEntry(Certificate trustedCert, in TrustedCertificateEntry() argument
794 if (trustedCert == null || attributes == null) { in TrustedCertificateEntry()
797 this.cert = trustedCert; in TrustedCertificateEntry()
/libcore/ojluni/annotations/hiddenapi/java/security/
DKeyStore.java504 public TrustedCertificateEntry(java.security.cert.Certificate trustedCert) { in TrustedCertificateEntry() argument
509 java.security.cert.Certificate trustedCert, in TrustedCertificateEntry() argument