Searched defs:trustedCert (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/security/cert/
H A DTrustAnchor.java45 private final X509Certificate trustedCert; field in class:TrustAnchor
56 * @param trustedCert
64 public TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) { argument
65 if (trustedCert == null) {
66 throw new NullPointerException("trustedCert == null");
68 this.trustedCert = trustedCert;
122 this.trustedCert = null;
169 this.trustedCert = null;
195 return trustedCert;
[all...]

Completed in 63 milliseconds