org.bouncycastle.asn1.test.LraPopWitnessTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-jdk15on 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 JDK 1.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.asn1.test;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.cmc.BodyPartID;
import org.bouncycastle.asn1.cmc.LraPopWitness;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.test.SimpleTest;
public class LraPopWitnessTest
extends SimpleTest
{
public static void main(String[] args)
{
runTest(new LraPopWitnessTest());
}
public String getName()
{
return "LraPopWitnessTest";
}
public void performTest()
throws Exception
{
LraPopWitness popWitness = new LraPopWitness(new BodyPartID(10L), new DERSequence(new ASN1Integer(20L)));
byte[] b = popWitness.getEncoded();
LraPopWitness popWitnessResult = LraPopWitness.getInstance(b);
isTrue("BodyIds", Arrays.areEqual(popWitness.getBodyIds(), popWitnessResult.getBodyIds()));
isEquals("PkiDataBody", popWitness.getPkiDataBodyid(), popWitnessResult.getPkiDataBodyid());
try {
LraPopWitness.getInstance(new DERSequence());
fail("Sequence length must be 2");
} catch (Throwable t) {
isEquals("Exception class",t.getClass(), IllegalArgumentException.class);
}
}
}