All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.bouncycastle.asn1.ASN1Integer Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.bugvm.bouncycastle.asn1;

import java.math.BigInteger;

public class ASN1Integer
    extends DERInteger
{
    ASN1Integer(byte[] bytes)
    {
        super(bytes);
    }

    public ASN1Integer(BigInteger value)
    {
        super(value);
    }

    public ASN1Integer(long value)
    {
        super(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy