com.bouncycastle.asn1.ASN1Integer Maven / Gradle / Ivy
The newest version!
package com.bouncycastle.asn1;
import java.math.BigInteger;
public class ASN1Integer
extends DERInteger
{
ASN1Integer(byte[] bytes)
{
super(bytes);
}
public ASN1Integer(BigInteger value)
{
super(value);
}
public ASN1Integer(int value)
{
super(value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy