summary refs log tree commit diff
path: root/crypto/src/asn1/IAsn1Choice.cs
blob: ecd76e4274c625a363d513c765c00a20fe7cfcff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Org.BouncyCastle.Asn1
{
	/**
	 * Marker interface for CHOICE objects - if you implement this in a roll-your-own
	 * object, any attempt to tag the object implicitly will convert the tag to an
	 * explicit one as the encoding rules require.
	 * <p>
	 * If you use this interface your class should also implement the getInstance
	 * pattern which takes a tag object and the tagging mode used. 
	 * </p>
	 */
	public interface IAsn1Choice
	{
		// marker interface
	}
}