I dunno man

This commit is contained in:
Lani Aung
2024-10-06 23:12:50 -06:00
parent 9c44ec0156
commit e3f23389da
6 changed files with 97 additions and 46 deletions
@@ -2,6 +2,6 @@ namespace fxl.codes.kisekae.data.Archives.Algorithms;
public interface IAlgorithm
{
byte[] Encode(ReadOnlySpan<byte> stream);
byte[] Decode(ReadOnlySpan<byte> stream);
byte[] Encode(Stream stream);
byte[] Decode(Stream stream, int bitLength);
}