1package org.bouncycastle.asn1;
2
3import java.math.BigInteger;
4
5/**
6 * @deprecated  Use ASN1Integer instead of this,
7 */
8public class DERInteger
9    extends ASN1Integer
10{
11    /**
12     * Constructor from a byte array containing a signed representation of the number.
13     *
14     * @param bytes a byte array containing the signed number.A copy is made of the byte array.
15     */
16    public DERInteger(byte[] bytes)
17    {
18        super(bytes, true);
19    }
20
21    public DERInteger(BigInteger value)
22    {
23        super(value);
24    }
25
26    public DERInteger(long value)
27    {
28        super(value);
29    }
30}
31