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