7 lines
169 B
C#
7 lines
169 B
C#
namespace fxl.codes.kisekae.data.Archives.Algorithms;
|
|
|
|
public interface IAlgorithm
|
|
{
|
|
byte[] Encode(Stream stream);
|
|
byte[] Decode(Stream stream, int bitLength);
|
|
} |