/libcore/luni/src/test/java/tests/security/cert/ |
D | CertStore1Test.java | 36 import java.security.cert.CertStore; 109 private CertStore [] createCS() { in createCS() 115 CertStore [] ss = new CertStore[3]; in createCS() 116 ss[0] = CertStore.getInstance(dType, dParams); in createCS() 117 ss[1] = CertStore.getInstance(dType, dParams, dProv); in createCS() 118 ss[2] = CertStore.getInstance(dType, dParams, dName); in createCS() 134 String dt = CertStore.getDefaultType(); in testCertStore01() 144 dt = CertStore.getDefaultType(); in testCertStore01() 160 CertStore certS = new myCertStore(spi, dProv, dType, pp); in testCertStore02() 192 CertStore.getInstance(null, dParams); in testCertStore03() [all …]
|
D | CertStore2Test.java | 13 import java.security.cert.CertStore; 43 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME, in testGetInstanceStringCertStoreParameters() 55 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME, null); in testGetInstanceStringCertStoreParameters() 65 CertStore.getInstance("UnknownCertStore", null); in testGetInstanceStringCertStoreParameters() 74 CertStore.getInstance(CERT_STORE_NAME, in testGetInstanceStringCertStoreParameters() 87 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME, in testGetInstanceStringCertStoreParametersString() 103 CertStore certStore = CertStore.getInstance(CERT_STORE_NAME, null, in testGetInstanceStringCertStoreParametersString() 118 CertStore.getInstance("UnknownCertStore", in testGetInstanceStringCertStoreParametersString() 130 CertStore.getInstance(CERT_STORE_NAME, null, in testGetInstanceStringCertStoreParametersString() 142 CertStore.getInstance(CERT_STORE_NAME, in testGetInstanceStringCertStoreParametersString() [all …]
|
/libcore/ojluni/src/main/java/java/security/cert/ |
D | CertStore.java | 100 public class CertStore { class 124 protected CertStore(CertStoreSpi storeSpi, Provider provider, in CertStore() method in CertStore 233 public static CertStore getInstance(String type, CertStoreParameters params) in getInstance() 239 return new CertStore((CertStoreSpi)instance.impl, in getInstance() 246 private static CertStore handleException(NoSuchAlgorithmException e) in handleException() 302 public static CertStore getInstance(String type, in getInstance() 309 return new CertStore((CertStoreSpi)instance.impl, in getInstance() 357 public static CertStore getInstance(String type, CertStoreParameters params, in getInstance() 363 return new CertStore((CertStoreSpi)instance.impl, in getInstance()
|
D | PKIXParameters.java | 98 private List<CertStore> certStores; 124 this.certStores = new ArrayList<CertStore>(); in PKIXParameters() 160 this.certStores = new ArrayList<CertStore>(); in PKIXParameters() 281 public void setCertStores(List<CertStore> stores) { in setCertStores() 283 this.certStores = new ArrayList<CertStore>(); in setCertStores() 285 for (Iterator<CertStore> i = stores.iterator(); i.hasNext();) { in setCertStores() 286 if (!(i.next() instanceof CertStore)) { in setCertStores() 291 this.certStores = new ArrayList<CertStore>(stores); in setCertStores() 302 public void addCertStore(CertStore store) { in addCertStore() 317 public List<CertStore> getCertStores() { in getCertStores() [all …]
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | PKIX.java | 80 private List<CertStore> stores; 143 List<CertStore> certStores() { in certStores() 196 private List<CertStore> stores; 218 @Override List<CertStore> certStores() { in certStores() 234 private static X500Principal getTargetSubject(List<CertStore> stores, in getTargetSubject() 249 for (CertStore store : stores) { in getTargetSubject() 295 private static class CertStoreComparator implements Comparator<CertStore> { 297 public int compare(CertStore store1, CertStore store2) { in compare()
|
D | URICertStore.java | 39 import java.security.cert.CertStore; 122 private CertStore ldapCertStore; 187 private static final Cache<URICertStoreParameters, CertStore> 189 static synchronized CertStore getInstance(URICertStoreParameters params) in getInstance() 194 CertStore ucs = certStoreCache.get(params); in getInstance() 210 static CertStore getInstance(AccessDescription ad) { in getInstance() 485 private static class UCS extends CertStore {
|
D | CertStoreHelper.java | 37 import java.security.cert.CertStore; 122 public abstract CertStore getCertStore(URI uri) in getCertStore()
|
D | DistributionPointFetcher.java | 72 List<CertStore> certStores, in getCRLs() 91 List<CertStore> certStores, in getCRLs() 147 String provider, List<CertStore> certStores, in getCRLs() 233 CertStore ucs = null; in getCRL() 263 List<CertStore> certStores) in getCRLs() 274 for (CertStore store : certStores) { in getCRLs() 319 Set<TrustAnchor> trustAnchors, List<CertStore> certStores, in verifyCRL()
|
D | Builder.java | 88 (State currentState, List<CertStore> certStores) in getMatchingCerts() 428 Collection<CertStore> certStores, in addMatchingCerts() 450 for (CertStore store : certStores) { in addMatchingCerts()
|
D | RevocationChecker.java | 62 private List<CertStore> certStores; 153 this.certStores.add(CertStore.getInstance("Collection", in init() 209 List<CertStore> stores) 227 List<CertStore> stores) 243 List<CertStore> stores) 264 List<CertStore> stores) 278 for (CertStore store : stores) { 502 for (CertStore store : certStores) { 999 CertStore cs = URICertStore.getInstance(ad);
|
D | ForwardBuilder.java | 35 import java.security.cert.CertStore; 110 List<CertStore> certStores) in getMatchingCerts() 144 List<CertStore> certStores, in getMatchingEECerts() 188 List<CertStore> certStores, in getMatchingCACerts() 369 CertStore cs = URICertStore.getInstance(ad); in getCerts()
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
D | TestUtils.java | 38 import java.security.cert.CertStore; 182 public static List<CertStore> getCollectionCertStoresList() in getCollectionCertStoresList() 185 CertStore cs = CertStore.getInstance("Collection", in getCollectionCertStoresList() 187 ArrayList<CertStore> l = new ArrayList<CertStore>(); in getCollectionCertStoresList() 771 private static CertStore store; 796 store = CertStore.getInstance("Collection", params);
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
D | CertPathBuilderTestPKIX.java | 22 import java.security.cert.CertStore; 60 CertStore certStore = CertStore.getInstance("Collection", storeParams); in getCertPathParameters()
|
D | CertPathValidatorTestPKIX.java | 25 import java.security.cert.CertStore; 75 CertStore certStore = CertStore.getInstance("Collection", storeParams); in setUp()
|
/libcore/ojluni/src/test/java/security/cert/ |
D | AKISerialNumberTest.java | 134 CertStore cs = CertStore.getInstance("Collection", ccsp); in main()
|
/libcore/ |
D | openjdk_java_files.bp | 563 "ojluni/src/main/java/java/security/cert/CertStore.java",
|