org.bouncycastle.asn1.bc.ObjectStoreIntegrityCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.asn1.bc;
import java.io.IOException;
import org.bouncycastle.asn1.ASN1Choice;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERTaggedObject;
/**
*
* ObjectStoreIntegrityCheck ::= CHOICE {
* PbkdMacIntegrityCheck
* [0] EXPLICIT SignatureCheck
* }
*
*/
public class ObjectStoreIntegrityCheck
extends ASN1Object
implements ASN1Choice
{
public static final int PBKD_MAC_CHECK = 0;
public static final int SIG_CHECK = 1;
private final int type;
private final ASN1Object integrityCheck;
public ObjectStoreIntegrityCheck(PbkdMacIntegrityCheck macIntegrityCheck)
{
this((ASN1Encodable)macIntegrityCheck);
}
public ObjectStoreIntegrityCheck(SignatureCheck signatureCheck)
{
this(new DERTaggedObject(0, signatureCheck));
}
private ObjectStoreIntegrityCheck(ASN1Encodable obj)
{
if (obj instanceof ASN1Sequence || obj instanceof PbkdMacIntegrityCheck)
{
this.type = PBKD_MAC_CHECK;
this.integrityCheck = PbkdMacIntegrityCheck.getInstance(obj);
}
else if (obj instanceof ASN1TaggedObject)
{
this.type = SIG_CHECK;
this.integrityCheck = SignatureCheck.getInstance(((ASN1TaggedObject)obj).getExplicitBaseObject());
}
else
{
throw new IllegalArgumentException("Unknown check object in integrity check.");
}
}
public static ObjectStoreIntegrityCheck getInstance(Object o)
{
if (o instanceof ObjectStoreIntegrityCheck)
{
return (ObjectStoreIntegrityCheck)o;
}
else if (o instanceof byte[])
{
try
{
return new ObjectStoreIntegrityCheck(ASN1Primitive.fromByteArray((byte[])o));
}
catch (IOException e)
{
throw new IllegalArgumentException("Unable to parse integrity check details.");
}
}
else if (o != null)
{
return new ObjectStoreIntegrityCheck((ASN1Encodable)(o));
}
return null;
}
public int getType()
{
return type;
}
public ASN1Object getIntegrityCheck()
{
return integrityCheck;
}
public ASN1Primitive toASN1Primitive()
{
if (integrityCheck instanceof SignatureCheck)
{
return new DERTaggedObject(0, integrityCheck);
}
return integrityCheck.toASN1Primitive();
}
}