2002/03/21 01:19:32
[org.ibex.core.git] / src / org / bouncycastle / asn1 / DERObject.java
diff --git a/src/org/bouncycastle/asn1/DERObject.java b/src/org/bouncycastle/asn1/DERObject.java
new file mode 100644 (file)
index 0000000..fb75442
--- /dev/null
@@ -0,0 +1,15 @@
+package org.bouncycastle.asn1;
+
+import java.io.IOException;
+
+public abstract class DERObject
+    implements DERTags, DEREncodable
+{
+    abstract void encode(DEROutputStream out)
+        throws IOException;
+
+    public DERObject getDERObject()
+    {
+        return this;
+    }
+}