using System; using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Ocsp; using Org.BouncyCastle.Asn1.X509; namespace Org.BouncyCastle.Ocsp { /// Wrapper for the RevokedInfo object public class RevokedStatus : CertificateStatus { private readonly RevokedInfo m_revokedInfo; public RevokedStatus(RevokedInfo revokedInfo) { m_revokedInfo = revokedInfo; } public RevokedStatus(DateTime revocationDate) { m_revokedInfo = new RevokedInfo(new Asn1GeneralizedTime(revocationDate)); } public RevokedStatus(DateTime revocationDate, int reason) { m_revokedInfo = new RevokedInfo(new Asn1GeneralizedTime(revocationDate), new CrlReason(reason)); } public DateTime RevocationTime { get { return m_revokedInfo.RevocationTime.ToDateTime(); } } public bool HasRevocationReason { get { return m_revokedInfo.RevocationReason != null; } } /// Return the revocation reason, if there is one. /// This field is optional; test for it with first. /// The revocation reason, if available. /// If no revocation reason is available. public int RevocationReason { get { if (m_revokedInfo.RevocationReason == null) throw new InvalidOperationException("attempt to get a reason where none is available"); return m_revokedInfo.RevocationReason.IntValueExact; } } } }