You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Crmf;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp
|
||
|
{
|
||
|
public class RevRepContentBuilder
|
||
|
{
|
||
|
private readonly Asn1EncodableVector status = new Asn1EncodableVector();
|
||
|
private readonly Asn1EncodableVector revCerts = new Asn1EncodableVector();
|
||
|
private readonly Asn1EncodableVector crls = new Asn1EncodableVector();
|
||
|
|
||
|
public virtual RevRepContentBuilder Add(PkiStatusInfo status)
|
||
|
{
|
||
|
this.status.Add(status);
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public virtual RevRepContentBuilder Add(PkiStatusInfo status, CertId certId)
|
||
|
{
|
||
|
if (this.status.Count != this.revCerts.Count)
|
||
|
throw new InvalidOperationException("status and revCerts sequence must be in common order");
|
||
|
|
||
|
this.status.Add(status);
|
||
|
this.revCerts.Add(certId);
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public virtual RevRepContentBuilder AddCrl(CertificateList crl)
|
||
|
{
|
||
|
this.crls.Add(crl);
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public virtual RevRepContent Build()
|
||
|
{
|
||
|
Asn1EncodableVector v = new Asn1EncodableVector();
|
||
|
|
||
|
v.Add(new DerSequence(status));
|
||
|
|
||
|
if (revCerts.Count != 0)
|
||
|
{
|
||
|
v.Add(new DerTaggedObject(true, 0, new DerSequence(revCerts)));
|
||
|
}
|
||
|
|
||
|
if (crls.Count != 0)
|
||
|
{
|
||
|
v.Add(new DerTaggedObject(true, 1, new DerSequence(crls)));
|
||
|
}
|
||
|
|
||
|
return RevRepContent.GetInstance(new DerSequence(v));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|