public virtual CertificateList[] ToCertificateListArray()
 {
     CertificateList[] result = new CertificateList[content.Count];
     for (int i = 0; i != result.Length; ++ i)
     {
         result[i] = CertificateList.GetInstance(content[i]);
     }
     return result;
 }
        public RevocationValues(
            CertificateList[]	crlVals,
            BasicOcspResponse[]	ocspVals,
            OtherRevVals		otherRevVals)
        {
            if (crlVals != null)
            {
                this.crlVals = new DerSequence(crlVals);
            }

            if (ocspVals != null)
            {
                this.ocspVals = new DerSequence(ocspVals);
            }

            this.otherRevVals = otherRevVals;
        }
 public CertificateList[] GetCrlVals()
 {
     CertificateList[] result = new CertificateList[crlVals.Count];
     for (int i = 0; i < crlVals.Count; ++i)
     {
         result[i] = CertificateList.GetInstance(crlVals[i].ToAsn1Object());
     }
     return result;
 }