HomeSort by relevance Sort by last modified time
    Searched refs:trustedCerts (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/sun/security/validator/
PKIXValidator.java 66 private final Set<X509Certificate> trustedCerts;
76 PKIXValidator(String variant, Collection<X509Certificate> trustedCerts) {
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 = new HashSet<X509Certificate>()
    [all...]
Validator.java 76 * trustedCerts);
175 Collection<X509Certificate> trustedCerts) {
177 return new SimpleValidator(variant, trustedCerts);
179 return new PKIXValidator(variant, trustedCerts);
SimpleValidator.java 95 private final Collection<X509Certificate> trustedCerts;
97 SimpleValidator(String variant, Collection<X509Certificate> trustedCerts) {
99 this.trustedCerts = trustedCerts;
102 for (X509Certificate cert : trustedCerts) {
116 return trustedCerts;
  /libcore/luni/src/main/java/libcore/util/
RecoverySystem.java 40 Set<X509Certificate> trustedCerts)
60 for (X509Certificate c : trustedCerts) {
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-resourcesrc/src/android/security/net/config/cts/
ResourceSourceTest.java 93 X509Certificate[] trustedCerts = ((X509TrustManager) tm).getAcceptedIssuers();
94 Set<X509Certificate> result = new HashSet<X509Certificate>(trustedCerts.length);
95 for (X509Certificate cert : trustedCerts) {
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
ForwardBuilder.java 65 private final Set<X509Certificate> trustedCerts;
85 trustedCerts = new HashSet<X509Certificate>(trustAnchors.size());
90 trustedCerts.add(trustedCert);
291 for (X509Certificate trustedCert : trustedCerts) {
688 boolean isTrustedCert = trustedCerts.contains(cert);
    [all...]

Completed in 1817 milliseconds