blob: 5574bf835d6f9872a2aa2a3cb49ffa58ed68568b [file] [log] [blame]
package org.bouncycastle.asn1;
import java.io.IOException;
public interface ASN1TaggedObjectParser
extends DEREncodable
{
public int getTagNo();
public DEREncodable getObjectParser(int tag, boolean isExplicit)
throws IOException;
}