DEREncodableVector.java revision e6bf3e8dfa2804891a82075cb469b736321b4827
1package org.bouncycastle.asn1;
2
3/**
4 * a general class for building up a vector of DER encodable objects -
5 * this will eventually be superceded by ASN1EncodableVector so you should
6 * use that class in preference.
7 */
8public class DEREncodableVector
9    extends ASN1EncodableVector
10{
11    /**
12     * @deprecated use ASN1EncodableVector instead.
13     */
14    public DEREncodableVector()
15    {
16
17    }
18}
19