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

com.braintree.org.bouncycastle.asn1.ASN1Integer Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.braintree.org.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 - 2025 Weber Informatics LLC | Privacy Policy