2002/03/21 01:19:32
[org.ibex.core.git] / src / org / bouncycastle / asn1 / DERObject.java
1 package org.bouncycastle.asn1;
2
3 import java.io.IOException;
4
5 public abstract class DERObject
6     implements DERTags, DEREncodable
7 {
8     abstract void encode(DEROutputStream out)
9         throws IOException;
10
11     public DERObject getDERObject()
12     {
13         return this;
14     }
15 }