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

/openjdk7/jdk/src/share/classes/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;
/openjdk7/jdk/src/share/classes/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])) {
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DForwardBuilder.java76 private final Set<X509Certificate> trustedCerts; field in class:ForwardBuilder
100 trustedCerts = new HashSet<X509Certificate>(trustAnchors.size());
105 trustedCerts.add(trustedCert);
304 for (X509Certificate trustedCert : trustedCerts) {
708 boolean isTrustedCert = trustedCerts.contains(cert);

Completed in 42 milliseconds