Inheritance: Asn1Encodable
Beispiel #1
0
 public OtherCertID[] GetCerts()
 {
     OtherCertID[] array = new OtherCertID[certs.Count];
     for (int i = 0; i != certs.Count; i++)
     {
         array[i] = OtherCertID.GetInstance(certs[i]);
     }
     return(array);
 }
 public OtherCertID[] GetCerts()
 {
     OtherCertID[] array = new OtherCertID[this.certs.Count];
     for (int num = 0; num != this.certs.Count; num++)
     {
         array[num] = OtherCertID.GetInstance(this.certs[num]);
     }
     return(array);
 }
        public OtherCertID[] GetCerts()
        {
            OtherCertID[] cs = new OtherCertID[certs.Count];

            for (int i = 0; i != certs.Count; ++i)
            {
                cs[i] = OtherCertID.GetInstance(certs[i]);
            }

            return(cs);
        }
		public OtherCertID[] GetCerts()
		{
			OtherCertID[] cs = new OtherCertID[certs.Count];

			for (int i = 0; i != certs.Count; ++i)
			{
				cs[i] = OtherCertID.GetInstance(certs[i]);
			}

			return cs;
		}
 public OtherSigningCertificate(
     OtherCertID otherCertID)
 {
     certs = new DerSequence(otherCertID);
 }
		public OtherSigningCertificate(
			OtherCertID otherCertID)
		{
			certs = new DerSequence(otherCertID);
		}