org.bouncycastle.oer.its.IValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15on Show documentation
Show all versions of bcutil-jdk15on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up.
The newest version!
package org.bouncycastle.oer.its;
import java.math.BigInteger;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.util.BigIntegers;
/**
*
* IValue ::= Uint16
*
*/
public class IValue
extends ASN1Object
{
private final BigInteger value;
private IValue(ASN1Integer value)
{
int i = BigIntegers.intValueExact(value.getValue());
if (i < 0 || i > 65535)
{
throw new IllegalArgumentException("value out of range");
}
this.value = value.getValue();
}
public static IValue getInstance(Object src)
{
if (src instanceof IValue)
{
return (IValue)src;
}
else if (src != null)
{
return new IValue(ASN1Integer.getInstance(src));
}
return null;
}
public ASN1Primitive toASN1Primitive()
{
return new ASN1Integer(value);
}
}