123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms
- {
- public class TimeStampAndCrl
- : Asn1Encodable
- {
- private ContentInfo timeStamp;
- private X509.CertificateList crl;
- public TimeStampAndCrl(ContentInfo timeStamp)
- {
- this.timeStamp = timeStamp;
- }
- private TimeStampAndCrl(Asn1Sequence seq)
- {
- this.timeStamp = ContentInfo.GetInstance(seq[0]);
- if (seq.Count == 2)
- {
- this.crl = X509.CertificateList.GetInstance(seq[1]);
- }
- }
- public static TimeStampAndCrl GetInstance(object obj)
- {
- if (obj is TimeStampAndCrl)
- return (TimeStampAndCrl)obj;
- if (obj != null)
- return new TimeStampAndCrl(Asn1Sequence.GetInstance(obj));
- return null;
- }
- public virtual ContentInfo TimeStampToken
- {
- get { return this.timeStamp; }
- }
- public virtual X509.CertificateList Crl
- {
- get { return this.crl; }
- }
- /**
- * <pre>
- * TimeStampAndCRL ::= SEQUENCE {
- * timeStamp TimeStampToken, -- according to RFC 3161
- * crl CertificateList OPTIONAL -- according to RFC 5280
- * }
- * </pre>
- * @return
- */
- public override Asn1Object ToAsn1Object()
- {
- Asn1EncodableVector v = new Asn1EncodableVector(timeStamp);
- v.AddOptional(crl);
- return new DerSequence(v);
- }
- }
- }
- #pragma warning restore
- #endif
|