add all
This commit is contained in:
66
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cms/TimeStampAndCRL.cs
vendored
Normal file
66
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/cms/TimeStampAndCRL.cs
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.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
|
||||
Reference in New Issue
Block a user