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

  /libcore/luni/src/test/java/tests/security/cert/
CertStore2Test.java 13 import java.security.cert.CertStore;
43 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME,
45 assertNotNull(certStore);
46 assertNotNull(certStore.getCertStoreParameters());
47 assertNotSame(parameters, certStore.getCertStoreParameters());
55 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME, null)
    [all...]
  /external/conscrypt/src/platform/java/org/conscrypt/
PinListEntry.java 46 private final TrustedCertificateStore certStore;
60 certStore = store;
142 if (certStore == null) {
146 if (certStore.isUserAddedCertificate(cert)) {
CertPinManager.java 44 private final TrustedCertificateStore certStore;
48 certStore = store;
57 certStore = store;
98 PinListEntry pin = new PinListEntry(entry, certStore);
TrustManagerImpl.java 132 TrustedCertificateStore certStore) {
133 this(keyStore, manager, certStore, null);
140 TrustedCertificateStore certStore,
157 (certStore != null) ? certStore : new TrustedCertificateStore();
162 trustedCertificateStoreLocal = certStore;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXCertStoreSelector.java 5 import java.security.cert.CertStore;
66 public static Collection<? extends Certificate> getCertificates(final PKIXCertStoreSelector selector, CertStore certStore)
69 return certStore.getCertificates(new SelectorClone(selector));
PKIXCRLStoreSelector.java 6 import java.security.cert.CertStore;
315 public static Collection<? extends CRL> getCRLs(final PKIXCRLStoreSelector selector, CertStore certStore)
318 return certStore.getCRLs(new SelectorClone(selector));
  /libcore/luni/src/test/java/tests/targets/security/cert/
CertPathBuilderTestPKIX.java 22 import java.security.cert.CertStore;
60 CertStore certStore = CertStore.getInstance("Collection", storeParams);
63 parameters.addCertStore(certStore);
CertPathValidatorTestPKIX.java 25 import java.security.cert.CertStore;
75 CertStore certStore = CertStore.getInstance("Collection", storeParams);
79 parameters.addCertStore(certStore);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 122 * Add the certificates in certStore to the certificate set to be included with the generated SignedData message.
124 * @param certStore the store containing the certificates to be included.
128 Store certStore)
131 certs.addAll(CMSUtils.getCertificatesFromStore(certStore));
CMSUtils.java 105 static List getCertificatesFromStore(Store certStore)
112 for (Iterator it = certStore.getMatches(null).iterator(); it.hasNext();)
  /frameworks/base/core/java/android/security/net/config/
NetworkSecurityTrustManager.java 55 TrustedCertificateStoreAdapter certStore = new TrustedCertificateStoreAdapter(config);
57 // TrustManagerImpl will use certStore to lookup certificates.
60 mDelegate = new TrustManagerImpl(store, null, certStore);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 12 import java.security.cert.CertStore;
663 // X509Store certStore = (X509Store)obj;
666 // certs.addAll(certStore.getMatches(certSelect));
677 CertStore certStore = (CertStore)obj;
681 certs.addAll(PKIXCertStoreSelector.getCertificates(certSelect, certStore));
    [all...]
  /external/nist-pkits/src/libcore/java/security/cert/
X509CertificateNistPkitsTest.java 28 import java.security.cert.CertStore;
154 CertStore certStore = CertStore.getInstance("Collection", certStoreParams);
160 params.addCertStore(certStore);
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 681 milliseconds