HomeSort by relevance Sort by last modified time
    Searched full:certstore (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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...]
CertStore1Test.java 36 import java.security.cert.CertStore;
45 * Tests for <code>CertStore</code> class constructors and
51 public static final String srvCertStore = "CertStore";
109 private CertStore [] createCS() {
115 CertStore [] ss = new CertStore[3];
116 ss[0] = CertStore.getInstance(dType, dParams);
117 ss[1] = CertStore.getInstance(dType, dParams, dProv);
118 ss[2] = CertStore.getInstance(dType, dParams, dName);
128 * Assertion: returns security property "certstore.type" or "LDAP
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CertStore.java 45 * To create a <code>CertStore</code>, call one of the static
47 * <code>CertStore</code> desired, any applicable initialization parameters
50 * Once the <code>CertStore</code> has been created, it can be used to
57 * <code>CertStore</code> is designed to provide access to a potentially
59 * implementation of <code>CertStore</code> provides access to certificates
63 * <p> Android provides the following <code>CertStore</code> types:
80 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html#CertStore">
81 * CertStore section</a> of the
87 * All public methods of <code>CertStore</code> objects must be thread-safe.
89 * single <code>CertStore</code> object (or more than one) with n
    [all...]
CertStoreParameters.java 29 * A specification of <code>CertStore</code> parameters.
32 * all <code>CertStore</code> parameter specifications. All
33 * <code>CertStore</code> parameter specifications must implement this
37 * to one of the {@link CertStore#getInstance CertStore.getInstance} methods.
38 * The <code>getInstance</code> method returns a <code>CertStore</code> that
40 * <code>CertStore</code> that is returned is initialized with the specified
42 * of <code>CertStore</code>s.
44 * @see CertStore#getInstance
60 * Note that the <code>CertStore.getInstance</code> methods make a cop
    [all...]
CertStoreSpi.java 33 * for the {@link CertStore CertStore} class. All <code>CertStore</code>
38 * accessed through the <code>CertStore</code> class.
75 * For some <code>CertStore</code> types, the resulting
78 * an LDAP <code>CertStore</code> may not search all entries in the
82 * Some <code>CertStore</code> implementations (especially LDAP
83 * <code>CertStore</code>s) may throw a <code>CertStoreException</code>
103 * For some <code>CertStore</code> types, the resulting
106 * an LDAP <code>CertStore</code> may not search all entries in th
    [all...]
CollectionCertStoreParameters.java 33 * Parameters used as input for the Collection <code>CertStore</code>
37 * to implementations of the Collection <code>CertStore</code>
39 * <code>Collection</code> from which the <code>CertStore</code> will
53 * @see CertStore
66 * ignored by the Collection <code>CertStore</code>.
73 * Collection <code>CertStore</code>. The Collection <code>CertStore</code>
77 * another thread is calling a method of a Collection <code>CertStore</code>
CRLSelector.java 31 * which <code>CRL</code>s should be retrieved from a <code>CertStore</code>.
42 * @see CertStore
43 * @see CertStore#getCRLs
CertSelector.java 32 * be retrieved from a <code>CertStore</code>.
43 * @see CertStore
44 * @see CertStore#getCertificates
PKIXParameters.java 98 private List<CertStore> certStores;
124 this.certStores = new ArrayList<CertStore>();
160 this.certStores = new ArrayList<CertStore>();
265 * Sets the list of <code>CertStore</code>s to be used in finding
267 * no <code>CertStore</code>s will be used. The first
268 * <code>CertStore</code>s in the list may be preferred to those that
274 * @param stores a <code>List</code> of <code>CertStore</code>s (or
277 * not of type <code>java.security.cert.CertStore</code>
281 public void setCertStores(List<CertStore> stores) {
283 this.certStores = new ArrayList<CertStore>();
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStore1Test.java 29 import java.security.cert.CertStore;
44 * Tests for <code>CertStore</code> class constructors and
59 public static final String srvCertStore = "CertStore";
118 private CertStore[] createCS() {
124 CertStore[] ss = new CertStore[3];
125 ss[0] = CertStore.getInstance(dType, dParams);
126 ss[1] = CertStore.getInstance(dType, dParams, dProv);
127 ss[2] = CertStore.getInstance(dType, dParams, dName);
137 * Assertion: returns security property "certstore.type" or "LDAP
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertStore_ImplTest.java 31 import java.security.cert.CertStore;
45 * Tests for <code>CertStore</code> class constructors and methods
49 private static final String srvCertStore = "CertStore";
50 private static final String defaultAlg = "CertStore";
61 validValues[2] = "CeRTSTore";
62 validValues[3] = "CERTstore";
84 private void checkResult(CertStore certS) throws CertStoreException,
102 * returns CertStore object
107 mPar mp = new mPar("CertStore");
109 CertStore.getInstance(null, p)
    [all...]
  /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/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));
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIX.java 81 private List<CertStore> stores;
144 List<CertStore> certStores() {
198 private List<CertStore> stores;
224 @Override List<CertStore> certStores() {
241 private static X500Principal getTargetSubject(List<CertStore> stores,
256 for (CertStore store : stores) {
282 * CertStore that generated the exception.
302 private static class CertStoreComparator implements Comparator<CertStore> {
304 public int compare(CertStore store1, CertStore store2)
    [all...]
URICertStore.java 39 import java.security.cert.CertStore;
62 * A <code>CertStore</code> that retrieves <code>Certificates</code> or
70 * This <code>CertStore</code> also implements Certificate/CRL caching.
82 * The URICertStore is not currently a standard CertStore type. We should
83 * consider adding a standard "URI" CertStore type.
116 // the URI of this CertStore
122 private CertStore ldapCertStore;
184 * Returns a URI CertStore. This method consults a cache of
187 private static final Cache<URICertStoreParameters, CertStore>
189 static synchronized CertStore getInstance(URICertStoreParameters params
    [all...]
CertStoreHelper.java 37 import java.security.cert.CertStore;
47 * Helper used by URICertStore and others when delegating to another CertStore
114 // we don't know about any other remote CertStore types
120 * Returns a CertStore using the given URI as parameters.
122 public abstract CertStore getCertStore(URI uri)
CollectionCertStore.java 35 import java.security.cert.CertStore;
43 * A <code>CertStore</code> that retrieves <code>Certificates</code> and
50 * create the <code>CertStore</code> and establish the
74 * @see java.security.cert.CertStore
84 * Creates a <code>CertStore</code> with the specified parameters.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCRLUtil.java 3 import java.security.cert.CertStore;
110 CertStore store = (CertStore)obj;
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/ldap/
LDAPCertStoreHelper.java 33 import java.security.cert.CertStore;
51 public CertStore getCertStore(URI uri)
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreParameters.java 27 * Class for verification of CertStore and CertStoreSpi
  /external/conscrypt/src/platform/java/org/conscrypt/
CertPinManager.java 44 private final TrustedCertificateStore certStore;
48 certStore = store;
57 certStore = store;
98 PinListEntry pin = new PinListEntry(entry, certStore);
PinListEntry.java 46 private final TrustedCertificateStore certStore;
60 certStore = store;
142 if (certStore == null) {
146 if (certStore.isUserAddedCertificate(cert)) {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertStoreParameters.java 28 * Class for verification of CertStore and CertStoreSpi
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
EngineTest.java 114 Engine engine = new Engine("CertStore");
125 Engine engine = new Engine("CertStore");

Completed in 464 milliseconds

1 2 3 4