HomeSort by relevance Sort by last modified time
    Searched defs:trustedCert (Results 1 - 25 of 33) sorted by null

1 2

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
CertificateChainCleaner.java 72 X509Certificate trustedCert = trustRootIndex.findByIssuerAndSignature(toVerify);
73 if (trustedCert != null) {
74 if (result.size() > 1 || !toVerify.equals(trustedCert)) {
75 result.add(trustedCert);
77 if (verifySignature(trustedCert, trustedCert)) {
  /libcore/ojluni/src/main/java/java/security/cert/
TrustAnchor.java 68 private final X509Certificate trustedCert;
113 * @param trustedCert a trusted {@code X509Certificate}
123 public TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints)
125 if (trustedCert == null)
126 throw new NullPointerException("the trustedCert parameter must " +
128 this.trustedCert = trustedCert;
147 * TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) }.
167 this.trustedCert = null;
186 * TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) }
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIXCertPathValidator.java 115 X509Certificate trustedCert = anchor.getTrustedCert();
116 if (trustedCert != null) {
119 if (selector != null && !selector.match(trustedCert)) {
121 debug.println("NO - don't try this trustedCert");
127 debug.println("YES - try this trustedCert");
130 + trustedCert.getSubjectX500Principal());
ForwardBuilder.java 88 X509Certificate trustedCert = anchor.getTrustedCert();
89 if (trustedCert != null) {
90 trustedCerts.add(trustedCert);
91 trustedSubjectDNs.add(trustedCert.getSubjectX500Principal());
285 for (X509Certificate trustedCert : trustedCerts) {
286 if (sel.match(trustedCert)) {
291 Debug.toHexString(trustedCert.getSerialNumber()) +
293 trustedCert.getSubjectX500Principal() +
295 trustedCert.getIssuerX500Principal());
297 if (caCerts.add(trustedCert) && !searchAllCertStores)
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
SSLConscryptPlainTextExposureTest.java 108 public InputStream trustedCert = null;
114 trustedCert = SSLConscryptPlainTextExposureTest.getResource(R.raw.cve_2017_13309_trustedcert);
135 ts.load(trustedCert, "trusted".toCharArray());
278 trustedCert.close();
471 InputStream trustedCert = null;
500 InputStream trustedCert = null;
513 trustedCert = SSLConscryptPlainTextExposureTest.getResource(R.raw.cve_2017_13309_trustedcert);
533 ts.load(trustedCert, "trusted".toCharArray());
857 trustedCert.close();
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /prebuilts/sdk/current/
core.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 189 milliseconds

1 2