summary refs log tree commit diff
path: root/crypto/src/util/IEncodable.cs
blob: 29d5af7f88a036b49e1dd2f0303688ac798d7383 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.IO;

namespace Org.BouncyCastle.Utilities
{
    public interface IEncodable
    {
        ///<summary>
        ///
        ///
        ///
        ///
        /// 
         // * 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();
    }
}