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

  /libcore/ojluni/src/main/java/java/security/cert/
TrustAnchor.java 69 private final X509Certificate trustedCert;
114 * @param trustedCert a trusted <code>X509Certificate</code>
124 public TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints)
126 if (trustedCert == null)
127 throw new NullPointerException("the trustedCert parameter must " +
129 this.trustedCert = trustedCert;
148 * TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) }.
168 this.trustedCert = null;
187 * TrustAnchor(X509Certificate trustedCert, byte[] nameConstraints) }
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIXCertPathValidator.java 118 X509Certificate trustedCert = anchor.getTrustedCert();
119 if (trustedCert != null) {
122 if (selector != null && !selector.match(trustedCert)) {
124 debug.println("NO - don't try this trustedCert");
130 debug.println("YES - try this trustedCert");
133 + trustedCert.getSubjectX500Principal());
ReverseState.java 225 X509Certificate trustedCert = anchor.getTrustedCert();
226 if (trustedCert != null) {
227 updateState(trustedCert);
ForwardBuilder.java 88 X509Certificate trustedCert = anchor.getTrustedCert();
89 if (trustedCert != null) {
90 trustedCerts.add(trustedCert);
91 trustedSubjectDNs.add(trustedCert.getSubjectX500Principal());
291 for (X509Certificate trustedCert : trustedCerts) {
292 if (sel.match(trustedCert)) {
297 if (caCerts.add(trustedCert) && !searchAllCertStores) {
    [all...]
SunCertPathBuilder.java 246 X509Certificate trustedCert = anchor.getTrustedCert();
247 PublicKey pubKey = trustedCert != null ? trustedCert.getPublicKey()
    [all...]
  /libcore/ojluni/src/main/java/sun/security/validator/
SimpleValidator.java 364 X509Certificate trustedCert = getTrustedCertificate(cert);
365 if (trustedCert != null) {
366 c.add(trustedCert);
378 X509Certificate trustedCert = list.iterator().next();
379 c.add(trustedCert);
PKIXValidator.java 317 X509Certificate trustedCert = anchor.getTrustedCert();
318 if (trustedCert == null) {
322 chain[chain.length - 1] = trustedCert;
  /libcore/ojluni/src/main/java/java/security/
KeyStore.java 571 * @param trustedCert the trusted <code>Certificate</code>
574 * <code>trustedCert</code> is <code>null</code>
576 public TrustedCertificateEntry(Certificate trustedCert) {
577 if (trustedCert == null) {
580 this.cert = trustedCert;
    [all...]
  /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 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/tools/common/api-versions/android-1/
android.jar 
  /prebuilts/tools/common/api-versions/android-2/
android.jar 
  /prebuilts/tools/common/api-versions/android-3/
android.jar 

Completed in 1018 milliseconds