Inheritance: Org.BouncyCastle.Asn1.Asn1Encodable
Example #1
0
		public RevokedStatus(
			RevokedInfo info)
		{
			this.info = info;
		}
Example #2
0
		public RevokedStatus(
			DateTime	revocationDate,
			int			reason)
		{
			this.info = new RevokedInfo(new DerGeneralizedTime(revocationDate), new CrlReason(reason));
		}
Example #3
0
		public CertStatus(
            RevokedInfo info)
        {
            tagNo = 1;
            value = info;
        }