Searched defs:certStore (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/win/
H A DInjectedBundleWin.cpp122 HCERTSTORE certStore = ::CertOpenSystemStore(0, mutableCertificateSystemStoreName.charactersWithNullTermination()); local
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/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSUtils.java61 static List getCertificatesFromStore(CertStore certStore) argument
68 for (Iterator it = certStore.getCertificates(null).iterator(); it.hasNext();)
92 static List getCertificatesFromStore(Store certStore) argument
99 for (Iterator it = certStore.getMatches(null).iterator(); it.hasNext();)
136 static List getCRLsFromStore(CertStore certStore) argument
143 for (Iterator it = certStore.getCRLs(null).iterator(); it.hasNext();)
H A DCMSSignedGenerator.java197 * @param certStore CertStore containing the public key certificates and CRLs
203 CertStore certStore)
206 certs.addAll(CMSUtils.getCertificatesFromStore(certStore));
207 crls.addAll(CMSUtils.getCRLsFromStore(certStore));
211 Store certStore)
214 certs.addAll(CMSUtils.getCertificatesFromStore(certStore));
202 addCertificatesAndCRLs( CertStore certStore) argument
210 addCertificates( Store certStore) argument

Completed in 101 milliseconds