/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 | 92 public class CertStore { class 116 protected CertStore(CertStoreSpi storeSpi, Provider provider, in CertStore() method in CertStore 235 public static CertStore getInstance(String type, CertStoreParameters params) in getInstance() 242 return new CertStore((CertStoreSpi)instance.impl, in getInstance() 249 private static CertStore handleException(NoSuchAlgorithmException e) in handleException() 308 public static CertStore getInstance(String type, in getInstance() 316 return new CertStore((CertStoreSpi)instance.impl, in getInstance() 366 public static CertStore getInstance(String type, CertStoreParameters params, in getInstance() 373 return new CertStore((CertStoreSpi)instance.impl, in getInstance()
|
D | PKIXParameters.java | 98 private List<CertStore> certStores; 281 public void setCertStores(List<CertStore> stores) { in setCertStores() 285 for (Iterator<CertStore> i = stores.iterator(); i.hasNext();) { in setCertStores() 286 if (!(i.next() instanceof CertStore)) { in setCertStores() 302 public void addCertStore(CertStore store) { in addCertStore() 317 public List<CertStore> getCertStores() { in getCertStores()
|
/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/ojluni/src/test/java/security/cert/ |
D | GetInstance.java | 49 () -> CertStore.getInstance("LDAP", ccsp)); in testGetInstance() 52 () -> CertStore.getInstance("BOGUS", null)); in testGetInstance()
|
D | AKISerialNumberTest.java | 136 CertStore cs = CertStore.getInstance("Collection", ccsp); in main()
|
/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/URICertStoreParameters/ |
D | TestBasic.java | 27 import java.security.cert.CertStore;
|
/libcore/ |
D | openjdk_java_files.bp | 589 "ojluni/src/main/java/java/security/cert/CertStore.java",
|
D | EXPECTED_UPSTREAM | 636 …/src/main/java/java/security/cert/CertStore.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/java/sec…
|
/libcore/api/ |
D | current.txt | 8838 public class CertStore { 8839 …ctor protected CertStore(java.security.cert.CertStoreSpi, java.security.Provider, String, java.sec… 8844 …method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStore… 8845 …method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStore… 8846 …method public static java.security.cert.CertStore getInstance(String, java.security.cert.CertStore… 9009 method public void addCertStore(java.security.cert.CertStore); 9012 method public java.util.List<java.security.cert.CertStore> getCertStores(); 9025 method public void setCertStores(java.util.List<java.security.cert.CertStore>);
|