HomeSort by relevance Sort by last modified time
    Searched defs:CertificateList (Results 1 - 4 of 4) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
CertificateList.java 21 * CertificateList ::= SEQUENCE {
27 public class CertificateList
34 public static CertificateList getInstance(
41 public static CertificateList getInstance(
44 if (obj instanceof CertificateList)
46 return (CertificateList)obj;
50 return new CertificateList(ASN1Sequence.getInstance(obj));
56 public CertificateList(
67 throw new IllegalArgumentException("sequence wrong size for CertificateList");
  /external/chromium/net/base/
cert_database.h 22 typedef std::vector<scoped_refptr<X509Certificate> > CertificateList;
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,
x509_certificate.h 49 typedef std::vector<scoped_refptr<X509Certificate> > CertificateList;
173 static CertificateList CreateCertificateListFromBytes(const char* data,
267 CertificateList* certs);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
CertificateList.java 41 * CertificateList ::= SEQUENCE {
48 public final class CertificateList {
58 public CertificateList(TBSCertList tbsCertList,
68 private CertificateList(TBSCertList tbsCertList,
104 encoding = CertificateList.ASN1.encode(this);
119 return new CertificateList(
128 CertificateList certificateList = (CertificateList) object;
129 values[0] = certificateList.tbsCertList
    [all...]

Completed in 90 milliseconds