org.bouncycastle.asn1.esf.CrlValidatedID 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.esf;
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;
/**
*
* CrlValidatedID ::= SEQUENCE {
* crlHash OtherHash,
* crlIdentifier CrlIdentifier OPTIONAL }
*
*/
public class CrlValidatedID
extends ASN1Object
{
private OtherHash crlHash;
private CrlIdentifier crlIdentifier;
public static CrlValidatedID getInstance(Object obj)
{
if (obj instanceof CrlValidatedID)
{
return (CrlValidatedID)obj;
}
else if (obj != null)
{
return new CrlValidatedID(ASN1Sequence.getInstance(obj));
}
return null;
}
private CrlValidatedID(ASN1Sequence seq)
{
if (seq.size() < 1 || seq.size() > 2)
{
throw new IllegalArgumentException("Bad sequence size: "
+ seq.size());
}
this.crlHash = OtherHash.getInstance(seq.getObjectAt(0));
if (seq.size() > 1)
{
this.crlIdentifier = CrlIdentifier.getInstance(seq.getObjectAt(1));
}
}
public CrlValidatedID(OtherHash crlHash)
{
this(crlHash, null);
}
public CrlValidatedID(OtherHash crlHash, CrlIdentifier crlIdentifier)
{
this.crlHash = crlHash;
this.crlIdentifier = crlIdentifier;
}
public OtherHash getCrlHash()
{
return this.crlHash;
}
public CrlIdentifier getCrlIdentifier()
{
return this.crlIdentifier;
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(this.crlHash.toASN1Primitive());
if (null != this.crlIdentifier)
{
v.add(this.crlIdentifier.toASN1Primitive());
}
return new DERSequence(v);
}
}