org.bouncycastle.asn1.cmp.RevRepContentBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-debug-jdk18on Show documentation
Show all versions of bcutil-debug-jdk18on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up.
package org.bouncycastle.asn1.cmp;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.DERTaggedObject;
import org.bouncycastle.asn1.crmf.CertId;
import org.bouncycastle.asn1.x509.CertificateList;
public class RevRepContentBuilder
{
private final ASN1EncodableVector status = new ASN1EncodableVector();
private final ASN1EncodableVector revCerts = new ASN1EncodableVector();
private final ASN1EncodableVector crls = new ASN1EncodableVector();
public RevRepContentBuilder add(PKIStatusInfo status)
{
this.status.add(status);
return this;
}
public RevRepContentBuilder add(PKIStatusInfo status, CertId certId)
{
if (this.status.size() != this.revCerts.size())
{
throw new IllegalStateException("status and revCerts sequence must be in common order");
}
this.status.add(status);
this.revCerts.add(certId);
return this;
}
public RevRepContentBuilder addCrl(CertificateList crl)
{
this.crls.add(crl);
return this;
}
public RevRepContent build()
{
ASN1EncodableVector v = new ASN1EncodableVector(3);
v.add(new DERSequence(status));
if (revCerts.size() != 0)
{
v.add(new DERTaggedObject(true, 0, new DERSequence(revCerts)));
}
if (crls.size() != 0)
{
v.add(new DERTaggedObject(true, 1, new DERSequence(crls)));
}
return RevRepContent.getInstance(new DERSequence(v));
}
}