Files
fxl.codes.kisekae/fxl.codes.kisekae.data/Archives/Algorithms/IAlgorithm.cs
T
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);
}