summary refs log tree commit diff
path: root/crypto/src/asn1/IAsn1Convertible.cs
blob: 77b12c310857fd3fb923b7613975a78b1efd011d (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Org.BouncyCastle.Asn1
{
    // TODO[api] Make generic on the return type of ToAsn1Object()
    // TODO[api] Have a different interface that is only for custom ASN.1 types
    public interface IAsn1Convertible
	{
		Asn1Object ToAsn1Object();
	}
}