01: package org.bouncycastle.asn1;
02:
03: import java.io.IOException;
04:
05: public abstract class DERObject extends ASN1Encodable implements
06: DERTags {
07: public DERObject toASN1Object() {
08: return this ;
09: }
10:
11: public abstract int hashCode();
12:
13: public abstract boolean equals(Object o);
14:
15: abstract void encode(DEROutputStream out) throws IOException;
16: }
|