/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...] |
/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 58 public static final String srvCertStore = "CertStore"; 116 private CertStore [] createCS() { 122 CertStore [] ss = new CertStore[3]; 123 ss[0] = CertStore.getInstance(dType, dParams); 124 ss[1] = CertStore.getInstance(dType, dParams, dProv); 125 ss[2] = CertStore.getInstance(dType, dParams, dName); 135 * Assertion: returns security property "certstore.type" or "LDAP [all...] |
CollectionCertStoreParametersTest.java | 97 * will be ignored by the Collection <code>CertStore</code>. 114 * available to the Collection CertStore. The Collection CertStore will
|
/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 50 private static final String srvCertStore = "CertStore"; 51 private static final String defaultAlg = "CertStore"; 62 validValues[2] = "CeRTSTore"; 63 validValues[3] = "CERTstore"; 85 private void checkResult(CertStore certS) throws CertStoreException, 103 * returns CertStore object 108 mPar mp = new mPar("CertStore"); 110 CertStore.getInstance(null, p) [all...] |
/libcore/luni/src/main/java/java/security/cert/ |
CertStore.java | 33 public class CertStore { 36 private static final String SERVICE = "CertStore"; 42 private static final String PROPERTYNAME = "certstore.type"; 44 // Default value of CertStore type. It returns if certpathbuild.type 61 * Creates a new {@code CertStore} instance. 72 protected CertStore(CertStoreSpi storeSpi, Provider provider, String type, 81 * Creates a new {@code CertStore} instance with the specified type and 97 public static CertStore getInstance(String type, CertStoreParameters params) 104 return new CertStore((CertStoreSpi) sap.spi, sap.provider, type, params); 116 * Creates a new {@code CertStore} instance from the specified provider wit [all...] |
CRLSelector.java | 25 * criteria for selecting {@code CRL}s from a {@code CertStore}. 27 * @see CertStore
|
CertSelector.java | 25 * criteria for selecting {@code Certificate}s from a {@code CertStore}. 27 * @see CertStore
|
CertStoreParameters.java | 22 * CertStore} instance.
|
PKIXParameters.java | 47 private List<CertStore> certStores; 258 public List<CertStore> getCertStores() { 261 certStores = new ArrayList<CertStore>(); 270 ArrayList<CertStore> modifiableList 271 = new ArrayList<CertStore>(certStores); 281 public void setCertStores(List<CertStore> certStores) { 291 this.certStores = new ArrayList<CertStore>(certStores); 301 public void addCertStore(CertStore store) { 308 certStores = new ArrayList<CertStore>(); 530 ret.certStores = new ArrayList<CertStore>(this.certStores) [all...] |
CollectionCertStoreParameters.java | 24 * The parameters to initialize a <i>Collection</i> type {@code CertStore} instance. 26 * It is used to specify the {@code Collection} where the {@code CertStore} will
|
CertStoreException.java | 23 * The exception that is thrown when an access to a {@code CertStore} fails.
|
CertStoreSpi.java | 25 * CertStore} class to be implemented by security providers.
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
CertPathBuilderTestPKIX.java | 22 import java.security.cert.CertStore; 65 CertStore certStore = CertStore.getInstance("Collection", storeParams); 70 parameters.addCertStore(certStore);
|
CertPathValidatorTestPKIX.java | 25 import java.security.cert.CertStore; 76 CertStore certStore = CertStore.getInstance("Collection", storeParams); 80 parameters.addCertStore(certStore);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/win/ |
InjectedBundleWin.cpp | 122 HCERTSTORE certStore = ::CertOpenSystemStore(0, mutableCertificateSystemStoreName.charactersWithNullTermination()); 123 if (!certStore) { 128 PCCERT_CONTEXT realCert = ::CertFindCertificateInStore(certStore, X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, 0, CERT_FIND_EXISTING, certificateChain.first(), 0); 137 // We can't close certStore here, since the certificate is still in use.
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PKIXCRLUtil.java | 3 import java.security.cert.CertStore; 134 CertStore store = (CertStore)obj;
|
CertPathValidatorUtilities.java | 11 import java.security.cert.CertStore; 738 X509Store certStore = (X509Store)obj; 741 certs.addAll(certStore.getMatches(certSelect)); 753 CertStore certStore = (CertStore)obj; 757 certs.addAll(certStore.getCertificates(certSelect)); 784 // X509Store certStore = (X509Store)obj; 787 // certs.addAll(certStore.getMatches(certSelect)); [all...] |
/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
|
MyCertStoreSpi.java | 34 * and CertStore
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
MyCertStoreParameters.java | 28 * Class for verification of CertStore and CertStoreSpi
|
MyCertStoreSpi.java | 37 * and CertStore
|
TestUtils.java | 40 import java.security.cert.CertStore; 185 public static List<CertStore> getCollectionCertStoresList() 188 CertStore cs = CertStore.getInstance("Collection", 190 ArrayList<CertStore> l = new ArrayList<CertStore>(); [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/ |
EngineTest.java | 113 Engine engine = new Engine("CertStore"); 124 Engine engine = new Engine("CertStore");
|
/external/chromium/chrome/browser/ui/toolbar/ |
toolbar_model.cc | 94 CertStore::GetInstance()->RetrieveCert(ssl.cert_id(), NULL)) 121 CertStore::GetInstance()->RetrieveCert(
|