org.bouncycastle.asn1.cmc.LraPopWitness 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.
package org.bouncycastle.asn1.cmc;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
/**
*
* id-cmc-lraPOPWitness OBJECT IDENTIFIER ::= {id-cmc 11}
*
* LraPopWitness ::= SEQUENCE {
* pkiDataBodyid BodyPartID,
* bodyIds SEQUENCE OF BodyPartID
* }
*
*/
public class LraPopWitness
extends ASN1Object
{
private final BodyPartID pkiDataBodyid;
private final ASN1Sequence bodyIds;
public LraPopWitness(BodyPartID pkiDataBodyid, ASN1Sequence bodyIds)
{
this.pkiDataBodyid = pkiDataBodyid;
this.bodyIds = bodyIds;
}
private LraPopWitness(ASN1Sequence seq)
{
if (seq.size() != 2)
{
throw new IllegalArgumentException("incorrect sequence size");
}
this.pkiDataBodyid = BodyPartID.getInstance(seq.getObjectAt(0));
this.bodyIds = ASN1Sequence.getInstance(seq.getObjectAt(1));
}
public static LraPopWitness getInstance(Object o)
{
if (o instanceof LraPopWitness)
{
return (LraPopWitness)o;
}
if (o != null)
{
return new LraPopWitness(ASN1Sequence.getInstance(o));
}
return null;
}
public BodyPartID getPkiDataBodyid()
{
return pkiDataBodyid;
}
public BodyPartID[] getBodyIds()
{
BodyPartID[] rv = new BodyPartID[bodyIds.size()];
for (int i = 0; i != bodyIds.size(); i++)
{
rv[i] = BodyPartID.getInstance(bodyIds.getObjectAt(i));
}
return rv;
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector(2);
v.add(pkiDataBodyid);
v.add(bodyIds);
return new DERSequence(v);
}
}