Files
fxl.codes.kisekae/fxl.codes.kisekae.data/Archives/Algorithms/IAlgorithm.cs
T

7 lines
178 B
C#

namespace fxl.codes.kisekae.data.Archives.Algorithms;
public interface IAlgorithm
{
byte[] Encode(ReadOnlySpan<byte> stream);
byte[] Decode(ReadOnlySpan<byte> stream);
}