Files
2024-10-06 23:12:50 -06:00

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);
}