initial checkin
[org.ibex.nanogoat.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     public DERObject getDERObject()
9     {
10         return this;
11     }
12
13     abstract void encode(DEROutputStream out)
14         throws IOException;
15 }