Searched refs:trustedCerts (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/validator/
H A DPKIXValidator.java66 private final Set<X509Certificate> trustedCerts; field in class:PKIXValidator
76 PKIXValidator(String variant, Collection<X509Certificate> trustedCerts) { argument
78 if (trustedCerts instanceof Set) {
79 this.trustedCerts = (Set<X509Certificate>)trustedCerts;
81 this.trustedCerts = new HashSet<X509Certificate>(trustedCerts);
84 for (X509Certificate cert : trustedCerts) {
100 for (X509Certificate cert : trustedCerts) {
124 trustedCerts
[all...]
H A DValidator.java76 * trustedCerts);
175 Collection<X509Certificate> trustedCerts) {
177 return new SimpleValidator(variant, trustedCerts);
179 return new PKIXValidator(variant, trustedCerts);
174 getInstance(String type, String variant, Collection<X509Certificate> trustedCerts) argument
H A DSimpleValidator.java95 private final Collection<X509Certificate> trustedCerts; field in class:SimpleValidator
97 SimpleValidator(String variant, Collection<X509Certificate> trustedCerts) { argument
99 this.trustedCerts = trustedCerts;
102 for (X509Certificate cert : trustedCerts) {
116 return trustedCerts;
/libcore/luni/src/main/java/libcore/util/
H A DRecoverySystem.java40 Set<X509Certificate> trustedCerts)
60 for (X509Certificate c : trustedCerts) {
39 verify(InputStream blockStream, InputStream contentStream, Set<X509Certificate> trustedCerts) argument
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DX509TrustManagerImpl.java63 private final Collection<X509Certificate> trustedCerts; field in class:X509TrustManagerImpl
78 trustedCerts = Collections.<X509Certificate>emptySet();
80 trustedCerts = KeyStores.getTrustedCerts(ks);
93 trustedCerts = v.getTrustedCertificates();
112 X509Certificate[] certsArray = new X509Certificate[trustedCerts.size()];
113 trustedCerts.toArray(certsArray);
293 for (X509Certificate cert : trustedCerts) {
314 v = Validator.getInstance(validatorType, variant, trustedCerts);
H A DSSLContextImpl.java925 Collection<X509Certificate> trustedCerts = new HashSet<>();
928 Collections.addAll(trustedCerts, certs);
931 if (trustedCerts.contains(chain[checkedLength])) {
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DForwardBuilder.java65 private final Set<X509Certificate> trustedCerts; field in class:ForwardBuilder
85 trustedCerts = new HashSet<X509Certificate>(trustAnchors.size());
90 trustedCerts.add(trustedCert);
291 for (X509Certificate trustedCert : trustedCerts) {
688 boolean isTrustedCert = trustedCerts.contains(cert);

Completed in 141 milliseconds