namespace GostCryptography.Asn1.Ber { public interface IAsn1InputStream { int Available(); void Close(); void Mark(); bool MarkSupported(); void Reset(); long Skip(long nbytes); } }