/external/chromium_org/content/public/browser/ |
cert_store.h | 26 class CertStore { 28 // Returns the singleton instance of the CertStore. 29 CONTENT_EXPORT static CertStore* GetInstance(); 46 virtual ~CertStore() {}
|
/external/chromium_org/content/browser/ |
cert_store_impl.cc | 10 CertStore* CertStore::GetInstance() {
|
cert_store_impl.h | 15 class CertStoreImpl : public CertStore { 17 // Returns the singleton instance of the CertStore. 20 // CertStore implementation:
|
/libcore/luni/src/test/java/tests/security/cert/ |
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...] |
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/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...] |
/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...] |
PKIXParameters_ImplTest.java | 29 import java.security.cert.CertStore; 258 p[1].addCertStore(CertStore.getInstance("Collection",
|
/external/chromium_org/chrome/browser/ |
certificate_viewer.cc | 14 content::CertStore::GetInstance()->RetrieveCert(cert_id, &cert);
|
/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 PROPERTY_NAME = "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...] |
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...] |
/external/chromium_org/chrome/browser/ui/website_settings/ |
website_settings.h | 20 class CertStore; 78 content::CertStore* cert_store); 188 // The |CertStore| provides all X509Certificates. 189 content::CertStore* cert_store_;
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
CertPathBuilderTestPKIX.java | 22 import java.security.cert.CertStore; 64 CertStore certStore = CertStore.getInstance("Collection", storeParams); 69 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/jce/provider/ |
PKIXCRLUtil.java | 3 import java.security.cert.CertStore; 134 CertStore store = (CertStore)obj;
|
/external/chromium_org/chrome/browser/ui/android/ |
website_settings_popup_android.cc | 30 using content::CertStore; 41 bool ok = CertStore::GetInstance()->RetrieveCert(cert_id, &cert); 97 content::CertStore::GetInstance()));
|
/external/chromium/chrome/browser/ui/toolbar/ |
toolbar_model.cc | 94 CertStore::GetInstance()->RetrieveCert(ssl.cert_id(), NULL)) 121 CertStore::GetInstance()->RetrieveCert(
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
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/support/common/java/org/apache/harmony/security/tests/support/cert/ |
TestUtils.java | 33 import java.security.cert.CertStore; 180 CertStore cs = CertStore.getInstance("Collection",
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSUtils.java | 10 import java.security.cert.CertStore; 68 static List getCertificatesFromStore(CertStore certStore) 75 for (Iterator it = certStore.getCertificates(null).iterator(); it.hasNext();) 98 static List getCertificatesFromStore(Store certStore) 105 for (Iterator it = certStore.getMatches(null).iterator(); it.hasNext();) 142 static List getCRLsFromStore(CertStore certStore) 149 for (Iterator it = certStore.getCRLs(null).iterator(); it.hasNext();)
|
CMSSignedGenerator.java | 6 import java.security.cert.CertStore; 198 * add the certificates and CRLs contained in the given CertStore 201 * Note: this assumes the CertStore will support null in the get 203 * @param certStore CertStore containing the public key certificates and CRLs 204 * @throws java.security.cert.CertStoreException if an issue occurs processing the CertStore 205 * @throws CMSException if an issue occurse transforming data from the CertStore into the message 209 CertStore certStore) 212 certs.addAll(CMSUtils.getCertificatesFromStore(certStore)); [all...] |
CMSSignedData.java | 9 import java.security.cert.CertStore; 46 * Store certStore = s.getCertificates(); 54 * Collection certCollection = certStore.getMatches(signer.getSID()); 404 // * return a CertStore containing the certificates and CRLs associated with 409 // * @exception CMSException if a general exception prevents creation of the CertStore 412 // public CertStore getCertificatesAndCRLs( 421 // * return a CertStore containing the certificates and CRLs associated with 425 // * @exception CMSException if a general exception prevents creation of the CertStore 428 // public CertStore getCertificatesAndCRLs( 453 // throw new CMSException("exception creating CertStore: " + e.getMessage(), e) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
ExtendedPKIXParameters.java | 8 import java.security.cert.CertStore; 197 * Sets the Java CertStore to this extended PKIX parameters. 200 * a <code>CertStore</code>. 209 addCertStore((CertStore)it.next());
|
/external/chromium_org/chrome/browser/ui/toolbar/ |
toolbar_model_impl.cc | 87 content::CertStore::GetInstance()->RetrieveCert(ssl.cert_id, NULL)) 236 content::CertStore::GetInstance()->RetrieveCert(
|
/external/chromium/chrome/browser/ssl/ |
ssl_blocking_page.cc | 103 int cert_id = CertStore::GetInstance()->StoreCert(
|