using System.IO; namespace Org.BouncyCastle.Utilities { public interface IEncodable { /// /// /// /// /// /// // * Return a byte array representing the implementing object. // * // * @return a byte array representing the encoding. // * @throws IOException if an issue arises generation the encoding. // */ byte[] GetEncoded(); } }