blob: ff09a454a2aee87af6468980a7b52c683b6d979f [file] [log] [blame]
package org.bouncycastle.asn1;
import java.io.InputStream;
/**
* @deprecated will be removed
*/
public class ASN1ObjectParser
{
ASN1StreamParser _aIn;
protected ASN1ObjectParser(
int baseTag,
int tagNumber,
InputStream contentStream)
{
_aIn = new ASN1StreamParser(contentStream);
}
}