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

/external/chromium/net/base/
H A Dcert_database.h22 typedef std::vector<scoped_refptr<X509Certificate> > CertificateList; typedef in namespace:net
100 void ListCerts(CertificateList* certs);
124 int ExportToPKCS12(const CertificateList& certs, const string16& password,
131 X509Certificate* FindRootInList(const CertificateList& certificates) const;
140 bool ImportCACerts(const CertificateList& certificates,
152 bool ImportServerCert(const CertificateList& certificates,
H A Dx509_certificate.h49 typedef std::vector<scoped_refptr<X509Certificate> > CertificateList; typedef in namespace:net
173 static CertificateList CreateCertificateListFromBytes(const char* data,
267 CertificateList* certs);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCertificateList.java22 * CertificateList ::= SEQUENCE {
28 public class CertificateList class in inherits:ASN1Object
35 public static CertificateList getInstance(
42 public static CertificateList getInstance(
45 if (obj instanceof CertificateList)
47 return (CertificateList)obj;
51 return new CertificateList(ASN1Sequence.getInstance(obj));
57 public CertificateList( method in class:CertificateList
68 throw new IllegalArgumentException("sequence wrong size for CertificateList");

Completed in 150 milliseconds