summary refs log tree commit diff
path: root/crypto/src/asn1/ASN1TaggedObjectParser.cs
blob: 32327a269797dfcc19ac1ff28fc783651fccfa0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Org.BouncyCastle.Asn1
{
	public interface Asn1TaggedObjectParser
		: IAsn1Convertible
	{
		int TagNo { get; }

		IAsn1Convertible GetObjectParser(int tag, bool isExplicit);
	}
}