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-fips Show documentation
Show all versions of bcutil-fips Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
/***************************************************************/
/****** DO NOT EDIT THIS CLASS bc-java SOURCE FILE ******/
/***************************************************************/
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 ASN1EncodableVector status = new ASN1EncodableVector();
private ASN1EncodableVector revCerts = new ASN1EncodableVector();
private 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();
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));
}
}