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;
		}
Beispiel #2
0
        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);
		}
Beispiel #4
0
 public OtherSigningCertificate(
     OtherCertID otherCertID)
 {
     certs = new DerSequence(otherCertID);
 }