fb75442cdaac589de87b97a47a86bbdf06c5de8c
[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 }