Home | History | Annotate | Download | only in asn1
      1 package org.bouncycastle.asn1;
      2 
      3 import java.math.BigInteger;
      4 
      5 public class ASN1Integer
      6     extends DERInteger
      7 {
      8     ASN1Integer(byte[] bytes)
      9     {
     10         super(bytes);
     11     }
     12 
     13     public ASN1Integer(BigInteger value)
     14     {
     15         super(value);
     16     }
     17 
     18     public ASN1Integer(long value)
     19     {
     20         super(value);
     21     }
     22 }
     23